evennia/src/utils/__init__.py

6 lines
144 B
Python
Raw Normal View History

2013-02-01 21:51:38 +01:00
# simple check to determine if we are currently running under pypy.
2013-01-31 14:34:52 -08:00
try:
import __pypy__ as is_pypy
except ImportError:
is_pypy = False