method: std.__getattr__

*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

call sites:

called in None</home/johnny/projects/merlinux/py/dist/py/test/raises.py:20>

traceback std.__getattr__.0

called in /home/johnny/projects/merlinux/py/dist/py/misc/testing/test_initpkg.py

traceback std.__getattr__.1

called in /home/johnny/projects/merlinux/py/dist/py/path/local/posix.py

traceback std.__getattr__.2