diff options
Diffstat (limited to 'eggs/py-1.4.0-py2.6.egg/py/_std.py')
-rw-r--r-- | eggs/py-1.4.0-py2.6.egg/py/_std.py | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/eggs/py-1.4.0-py2.6.egg/py/_std.py b/eggs/py-1.4.0-py2.6.egg/py/_std.py deleted file mode 100644 index 97a9853..0000000 --- a/eggs/py-1.4.0-py2.6.egg/py/_std.py +++ /dev/null @@ -1,18 +0,0 @@ -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() |