Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(13)

Unified Diff: third_party/google-endpoints/pyasn1/compat/octets.py

Issue 2666783008: Add google-endpoints to third_party/. (Closed)
Patch Set: Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « third_party/google-endpoints/pyasn1/compat/binary.py ('k') | third_party/google-endpoints/pyasn1/debug.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/google-endpoints/pyasn1/compat/octets.py
diff --git a/third_party/google-endpoints/pyasn1/compat/octets.py b/third_party/google-endpoints/pyasn1/compat/octets.py
new file mode 100644
index 0000000000000000000000000000000000000000..e8127370c54fe60e96dce0ee0a1e07527fed52bb
--- /dev/null
+++ b/third_party/google-endpoints/pyasn1/compat/octets.py
@@ -0,0 +1,22 @@
+from sys import version_info
+
+if version_info[0] <= 2:
+ int2oct = chr
+ ints2octs = lambda s: ''.join([ int2oct(x) for x in s ])
+ null = ''
+ oct2int = ord
+ octs2ints = lambda s: [ oct2int(x) for x in s ]
+ str2octs = lambda x: x
+ octs2str = lambda x: x
+ isOctetsType = lambda s: isinstance(s, str)
+ isStringType = lambda s: isinstance(s, (str, unicode))
+else:
+ ints2octs = bytes
+ int2oct = lambda x: ints2octs((x,))
+ null = ints2octs()
+ oct2int = lambda x: x
+ octs2ints = lambda s: [ x for x in s ]
+ str2octs = lambda x: x.encode()
+ octs2str = lambda x: x.decode()
+ isOctetsType = lambda s: isinstance(s, bytes)
+ isStringType = lambda s: isinstance(s, str)
« no previous file with comments | « third_party/google-endpoints/pyasn1/compat/binary.py ('k') | third_party/google-endpoints/pyasn1/debug.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698