From 4e66510fa7d995b7b2eb66b67609ca7859cd313b Mon Sep 17 00:00:00 2001 From: hpk Date: Sun, 11 Feb 2007 14:33:22 +0100 Subject: [PATCH] [svn r38458] better docstring for top level object --HG-- branch : trunk --- py/misc/std.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/py/misc/std.py b/py/misc/std.py index 7c711cdfd..bef7ae8cc 100644 --- a/py/misc/std.py +++ b/py/misc/std.py @@ -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