*Not documented*
def __getattr__(self, name):
origin: Std
where:
changes in __dict__ after execution:
exceptions that might appear during execution:
function source:
def __getattr__(self, name):
try:
m = __import__(name)
except ImportError:
raise AttributeError("py.std: could not import %s" % name)
return m
called in None</home/johnny/projects/merlinux/py/dist/py/test/raises.py:20>
called in /home/johnny/projects/merlinux/py/dist/py/misc/testing/test_initpkg.py
called in /home/johnny/projects/merlinux/py/dist/py/path/local/posix.py