[Python-checkins] r65379 - python/trunk/Doc/reference/simple_stmts.rst

georg.brandl python-checkins at python.org
Fri Aug 1 22:13:29 CEST 2008


Author: georg.brandl
Date: Fri Aug  1 22:13:29 2008
New Revision: 65379

Log:
This should really be a comment.


Modified:
   python/trunk/Doc/reference/simple_stmts.rst

Modified: python/trunk/Doc/reference/simple_stmts.rst
==============================================================================
--- python/trunk/Doc/reference/simple_stmts.rst	(original)
+++ python/trunk/Doc/reference/simple_stmts.rst	Fri Aug  1 22:13:29 2008
@@ -743,10 +743,13 @@
 the module search path is carried out differently.  The sequence of identifiers
 up to the last dot is used to find a "package"; the final identifier is then
 searched inside the package.  A package is generally a subdirectory of a
-directory on ``sys.path`` that has a file :file:`__init__.py`. [XXX Can't be
-bothered to spell this out right now; see the URL
-http://www.python.org/doc/essays/packages.html for more details, also about how
-the module search works from inside a package.]
+directory on ``sys.path`` that has a file :file:`__init__.py`.
+
+.. 
+   [XXX Can't be
+   bothered to spell this out right now; see the URL
+   http://www.python.org/doc/essays/packages.html for more details, also about how
+   the module search works from inside a package.]
 
 .. index:: builtin: __import__
 


More information about the Python-checkins mailing list