summaryrefslogtreecommitdiffstats
path: root/python/py/py/_std.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/py/py/_std.py')
-rw-r--r--python/py/py/_std.py18
1 files changed, 18 insertions, 0 deletions
diff --git a/python/py/py/_std.py b/python/py/py/_std.py
new file mode 100644
index 000000000..97a985332
--- /dev/null
+++ b/python/py/py/_std.py
@@ -0,0 +1,18 @@
+import sys
+
+class Std(object):
+ """ makes top-level python modules available as an attribute,
+ importing them on first access.
+ """
+
+ def __init__(self):
+ self.__dict__ = sys.modules
+
+ def __getattr__(self, name):
+ try:
+ m = __import__(name)
+ except ImportError:
+ raise AttributeError("py.std: could not import %s" % name)
+ return m
+
+std = Std()