mirror of
https://github.com/PyMySQL/mysqlclient.git
synced 2025-08-15 02:54:29 +08:00
9 lines
124 B
Python
9 lines
124 B
Python
import sys
|
|
|
|
if sys.version_info[0] == 3:
|
|
unicode = str
|
|
unichr = chr
|
|
else:
|
|
unicode = unicode
|
|
unichr = unichr
|