mirror of
https://github.com/evennia/evennia.git
synced 2026-03-19 22:36:31 +01:00
5 lines
144 B
Python
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
|