You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
186 B

6 years ago
  1. import sys
  2. if sys.version_info[0] == 3:
  3. PY2 = False
  4. unicode = str
  5. unichr = chr
  6. long = int
  7. else:
  8. PY2 = True
  9. unicode = unicode
  10. unichr = unichr
  11. long = long

Powered by TurnKey Linux.