[svn r38458] better docstring for top level object

--HG--
branch : trunk
This commit is contained in:
hpk 2007-02-11 14:33:22 +01:00
parent 155886bb54
commit 4e66510fa7
1 changed files with 3 additions and 1 deletions

View File

@ -2,7 +2,9 @@
import sys
class Std(object):
""" (lazily) hook into the top-level standard library """
""" makes all standard python modules available as a lazily
computed attribute.
"""
def __init__(self):
self.__dict__ = sys.modules