diff options
author | Benjamin Peterson <benjamin@python.org> | 2014-10-17 15:07:14 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2014-10-17 15:07:14 (GMT) |
commit | 867dc37822d3d1dcbd67e10487f1715f0d197b4f (patch) | |
tree | 4974bd971a9bc788287fc36d214cb7375eb906ed | |
parent | 0746b002880ef22385135c85e03ddc3d1570a411 (diff) | |
download | cpython-867dc37822d3d1dcbd67e10487f1715f0d197b4f.zip cpython-867dc37822d3d1dcbd67e10487f1715f0d197b4f.tar.gz cpython-867dc37822d3d1dcbd67e10487f1715f0d197b4f.tar.bz2 |
remove link to the 'original package specification'; I doubt it's useful anymore (closes #22657)
-rw-r--r-- | Doc/reference/simple_stmts.rst | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/Doc/reference/simple_stmts.rst b/Doc/reference/simple_stmts.rst index 0158e87..0203e08 100644 --- a/Doc/reference/simple_stmts.rst +++ b/Doc/reference/simple_stmts.rst @@ -695,9 +695,7 @@ hierarchical naming of modules. To help organize modules and provide a hierarchy in naming, Python has a concept of packages. A package can contain other packages and modules while modules cannot contain other modules or packages. From a file system perspective, packages are directories and modules -are files. The original `specification for packages -<http://www.python.org/doc/essays/packages.html>`_ is still available to read, -although minor details have changed since the writing of that document. +are files. .. index:: single: sys.modules |