evennia/src/utils/__init__.py
2013-02-01 21:51:38 +01:00

5 lines
144 B
Python

# simple check to determine if we are currently running under pypy.
try:
import __pypy__ as is_pypy
except ImportError:
is_pypy = False