From 44edab647afa3856058881a67c512985fa4fac8a Mon Sep 17 00:00:00 2001 From: Camil Staps Date: Wed, 29 Apr 2015 16:11:44 +0200 Subject: 1.2 python3 support --- pypride.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'pypride.py') diff --git a/pypride.py b/pypride.py index 9655d44..54a0ebf 100644 --- a/pypride.py +++ b/pypride.py @@ -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 -- cgit v1.2.3