evennia/evennia/utils/__init__.py
2015-10-01 20:00:28 +01:00

14 lines
358 B
Python

"""
This sub-package holds the miscelaneous utilities used by other
modules in Evennia. It also holds the idmapper in-memory caching
functionality.
"""
from __future__ import absolute_import
# simple check to determine if we are currently running under pypy.
try:
import __pypy__ as is_pypy
except ImportError:
is_pypy = False
from .utils import *