pyCraft/minecraft/compat.py
2015-04-06 02:21:50 +02:00

20 lines
463 B
Python

"""
This module stores code used for making pyCraft compatible with
both Python2 and Python3 while using the same codebase.
"""
# Raw input -> input shenangians
# example
# > from minecraft.compat import input
# > input("asd")
# Hi, I'm pylint, and sometimes I act silly, at which point my programmer
# overlords need to correct me.
# pylint: disable=undefined-variable
try:
input = raw_input
except NameError:
pass
# pylint: enable=undefined-variable