[py-svn] r38458 - py/trunk/py/misc

hpk at codespeak.net hpk at codespeak.net
Sun Feb 11 14:33:23 CET 2007


Author: hpk
Date: Sun Feb 11 14:33:22 2007
New Revision: 38458

Modified:
   py/trunk/py/misc/std.py
Log:
better docstring for top level object


Modified: py/trunk/py/misc/std.py
==============================================================================
--- py/trunk/py/misc/std.py	(original)
+++ py/trunk/py/misc/std.py	Sun Feb 11 14:33:22 2007
@@ -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



More information about the pytest-commit mailing list