mirror of
https://github.com/ammaraskar/pyCraft.git
synced 2024-11-25 03:35:29 +01:00
13 lines
225 B
Python
13 lines
225 B
Python
"""
|
|
This module stores code used for making pyCraft compatible with
|
|
both Python2 and Python3 while using the same codebase.
|
|
"""
|
|
|
|
import six
|
|
|
|
# ### LONG ###
|
|
if six.PY3:
|
|
long = int
|
|
else: # pragma: no cover
|
|
long = long
|