diff options
author | Georg Brandl <georg@python.org> | 2008-08-01 20:13:29 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2008-08-01 20:13:29 (GMT) |
commit | 290d3d994aeed006daa559b2e613f536f0bc668b (patch) | |
tree | 274e2a08aaafe67d55ec4cff4969b09a7ea433a0 /Doc/reference | |
parent | 632f631c48c1c77cd96147fcd99049d93f846c0b (diff) | |
download | cpython-290d3d994aeed006daa559b2e613f536f0bc668b.zip cpython-290d3d994aeed006daa559b2e613f536f0bc668b.tar.gz cpython-290d3d994aeed006daa559b2e613f536f0bc668b.tar.bz2 |
This should really be a comment.
Diffstat (limited to 'Doc/reference')
-rw-r--r-- | Doc/reference/simple_stmts.rst | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/Doc/reference/simple_stmts.rst b/Doc/reference/simple_stmts.rst index fa6bd27..4d0e865 100644 --- a/Doc/reference/simple_stmts.rst +++ b/Doc/reference/simple_stmts.rst @@ -743,10 +743,13 @@ raise a :exc:`SyntaxError`. 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__ |