mirror of
https://github.com/Relintai/gdnative_python.git
synced 2024-11-08 10:22:08 +01:00
13 lines
228 B
Python
13 lines
228 B
Python
from _pandemonium import __global_constants
|
|
|
|
|
|
def __getattr__(name):
|
|
try:
|
|
return __global_constants[name]
|
|
except KeyError:
|
|
raise AttributeError
|
|
|
|
|
|
def __dir__():
|
|
return list(__global_constants.keys())
|