mirror of https://github.com/sgoudham/Enso-Bot.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
217 B
Python
13 lines
217 B
Python
5 years ago
|
'''
|
||
|
Some general-purpose constants, including Python3/Python2 discrimination
|
||
|
'''
|
||
|
import sys
|
||
|
|
||
|
# Package version
|
||
|
VERSION = '0.9.3'
|
||
|
|
||
|
# Python 2/3 compatibility
|
||
|
PY3 = sys.version_info.major == 3
|
||
|
if PY3:
|
||
|
unicode = str
|