
python-checkins at python
May 9, 2012, 5:22 PM
Post #1 of 1
(38 views)
Permalink
|
|
peps: Two spaces after periods.
|
|
http://hg.python.org/peps/rev/342624df7c93 changeset: 4364:342624df7c93 user: Eric V. Smith <eric [at] trueblade> date: Wed May 09 20:22:29 2012 -0400 summary: Two spaces after periods. files: pep-0420.txt | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pep-0420.txt b/pep-0420.txt --- a/pep-0420.txt +++ b/pep-0420.txt @@ -152,9 +152,9 @@ deferred until a sub-level import occurs. A namespace package is not fundamentally different from a regular -package. It is just a different way of creating packages. Once a +package. It is just a different way of creating packages. Once a namespace package is created, there is no functional difference -between it and a regular package. The only observable difference is +between it and a regular package. The only observable difference is that the namespace package's ``__file__`` attribute will end with a path separator (typically a slash or backslash, depending on the platform). @@ -219,7 +219,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 -corresponding "foo" directories can be completely removed. But +corresponding "foo" directories can be completely removed. But "foo/baz" and its corresponding "foo" directory cannot be removed. It is also possible to have the "foo.bar" portion installed in a -- Repository URL: http://hg.python.org/peps
|