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.
Enso-Bot/venv/Lib/site-packages/aiml/constants.py

13 lines
217 B
Python

'''
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