mirror of
https://github.com/PyMySQL/mysqlclient.git
synced 2025-08-15 11:10:58 +08:00
13 lines
186 B
Python
13 lines
186 B
Python
import sys
|
|
|
|
if sys.version_info[0] == 2:
|
|
PY2 = True
|
|
unicode = unicode
|
|
unichr = unichr
|
|
long = long
|
|
else:
|
|
PY2 = False
|
|
unicode = str
|
|
unichr = chr
|
|
long = int
|