mirror of
https://gitee.com/wangbin579/cetus.git
synced 2024-12-02 03:47:41 +08:00
8 lines
91 B
Python
8 lines
91 B
Python
import sys
|
|
|
|
|
|
if sys.version_info > (3,):
|
|
text_type = str
|
|
else:
|
|
text_type = unicode
|