mirror of
https://github.com/frappe/frappe_docker.git
synced 2026-06-19 06:35:10 +00:00
12 lines
186 B
Python
12 lines
186 B
Python
import sys
|
|
|
|
if sys.version_info[0] == 3:
|
|
PY2 = False
|
|
unicode = str
|
|
unichr = chr
|
|
long = int
|
|
else:
|
|
PY2 = True
|
|
unicode = unicode
|
|
unichr = unichr
|
|
long = long
|