evennia/lib/utils/__init__.py

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