[Python-checkins] peps: Slight clarifications about packaging.
eric.smith
python-checkins at python.org
Thu Apr 26 14:30:27 CEST 2012
http://hg.python.org/peps/rev/4c08c21cfacd
changeset: 4311:4c08c21cfacd
user: Eric V. Smith <eric at trueblade.com>
date: Thu Apr 26 08:30:19 2012 -0400
summary:
Slight clarifications about packaging.
files:
pep-0420.txt | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/pep-0420.txt b/pep-0420.txt
--- a/pep-0420.txt
+++ b/pep-0420.txt
@@ -199,9 +199,9 @@
======================
Multiple portions of a namespace package can be installed into the
-same location, or into separate locations. For this section, suppose
-there are two portions which define "foo.bar" and "foo.baz". "foo"
-itself is a namespace package.
+same directory, or into separate directories. For this section,
+suppose there are two portions which define "foo.bar" and "foo.baz".
+"foo" itself is a namespace package.
If these are installed in the same location, a single directory "foo"
would be in a directory that is on ``sys.path``. Inside "foo" would
@@ -215,7 +215,7 @@
"foo" directories would be in directories that are on ``sys.path``.
"foo/bar" would be in one of these sys.path entries, and "foo/baz"
would be in the other. Upon removal of "foo.bar", the "foo/bar" and
-corresonding "foo" directories can be removed.
+corresonding "foo" directories can be completely removed.
Note that even if they are installed in the same directory, "foo.bar"
and "foo.baz" would not have any files in common.
--
Repository URL: http://hg.python.org/peps
More information about the Python-checkins
mailing list