diff options
author | Camil Staps | 2015-04-29 16:11:44 +0200 |
---|---|---|
committer | Camil Staps | 2015-04-29 16:11:44 +0200 |
commit | 44edab647afa3856058881a67c512985fa4fac8a (patch) | |
tree | 6f1f860a9da3f264b2acb03c4c344bb94ac3eaa6 /pypride.py | |
parent | python3 works as well now (diff) |
1.2 python3 support
Diffstat (limited to 'pypride.py')
-rw-r--r-- | pypride.py | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -2,8 +2,8 @@ # ============================================================================= # Python PRIDE implementation -# Version: 1.1 -# Date: 25/04/2015 +# Version: 1.2 +# Date: 29/04/2015 # # ============================================================================= # @@ -279,4 +279,4 @@ def number2string_N(i, N): return binascii.unhexlify(s) def string_bytes(s): - return [ord(c) for c in s] if sys.version_info.major == 2 else s
\ No newline at end of file + return [ord(c) for c in s] if sys.version_info.major == 2 else s |