mirror of
https://github.com/evennia/evennia.git
synced 2026-04-02 14:07:16 +02:00
14 lines
320 B
Python
14 lines
320 B
Python
"""
|
|
This sub-package holds the miscelaneous utilities used by other
|
|
modules in Evennia. It also holds the idmapper in-memory caching
|
|
functionality.
|
|
|
|
"""
|
|
|
|
# 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 *
|