Repair typos
This commit is contained in:
parent
d461fe1a8a
commit
b8d461e922
|
@ -29,7 +29,7 @@ steps for compilation are:
|
||||||
|
|
||||||
Starting with Python 2.5, the above steps are now used. This change
|
Starting with Python 2.5, the above steps are now used. This change
|
||||||
was done to simplify compilation by breaking it into three steps.
|
was done to simplify compilation by breaking it into three steps.
|
||||||
The purpose of this document is to outline how the lattter three steps
|
The purpose of this document is to outline how the latter three steps
|
||||||
of the process works.
|
of the process works.
|
||||||
|
|
||||||
This document does not touch on how parsing works beyond what is needed
|
This document does not touch on how parsing works beyond what is needed
|
||||||
|
@ -515,7 +515,7 @@ Important Files
|
||||||
changed.
|
changed.
|
||||||
|
|
||||||
* pycodegen.py
|
* pycodegen.py
|
||||||
One of the files that muc be modified if Include/opcode.h is
|
One of the files that must be modified if Include/opcode.h is
|
||||||
changed.
|
changed.
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -56,8 +56,8 @@ caused repeated overload situations in the past, to which the SF
|
||||||
operators could not always respond in a timely manner. In particular,
|
operators could not always respond in a timely manner. In particular,
|
||||||
for CVS, they had to reduce the load on the primary CVS server by
|
for CVS, they had to reduce the load on the primary CVS server by
|
||||||
introducing a second, read-only CVS server for anonymous access. This
|
introducing a second, read-only CVS server for anonymous access. This
|
||||||
server is regularly synchronized, but lags behind the the read-write
|
server is regularly synchronized, but lags behind the read-write CVS
|
||||||
CVS repository between synchronizations. As a result, users without
|
repository between synchronizations. As a result, users without
|
||||||
commit access can see recent changes to the repository only after a
|
commit access can see recent changes to the repository only after a
|
||||||
delay.
|
delay.
|
||||||
|
|
||||||
|
|
10
pep-0355.txt
10
pep-0355.txt
|
@ -33,7 +33,7 @@ Background
|
||||||
were made to get the path module included in the Python standard
|
were made to get the path module included in the Python standard
|
||||||
library; [4], [5], [6], [7].
|
library; [4], [5], [6], [7].
|
||||||
|
|
||||||
This PEP summarizes the the ideas and suggestions people have
|
This PEP summarizes the ideas and suggestions people have
|
||||||
expressed about the path module and proposes that a modified
|
expressed about the path module and proposes that a modified
|
||||||
version should be included in the standard library.
|
version should be included in the standard library.
|
||||||
|
|
||||||
|
@ -107,7 +107,7 @@ Rationale
|
||||||
the manipulation of file contents, for which file objects are
|
the manipulation of file contents, for which file objects are
|
||||||
better suited.
|
better suited.
|
||||||
|
|
||||||
- Platform incompatibilites are dealt with by not instantiating
|
- Platform incompatibilities are dealt with by not instantiating
|
||||||
system specific methods.
|
system specific methods.
|
||||||
|
|
||||||
|
|
||||||
|
@ -389,7 +389,7 @@ Closed Issues
|
||||||
* The __div__() method was removed. Overloading the / (division)
|
* The __div__() method was removed. Overloading the / (division)
|
||||||
operator may be "too much magic" and make path concatenation
|
operator may be "too much magic" and make path concatenation
|
||||||
appear to be division. The method can always be re-added later
|
appear to be division. The method can always be re-added later
|
||||||
if the BFDL so desires. In its place, __new__() got an *args
|
if the BDFL so desires. In its place, __new__() got an *args
|
||||||
argument that accepts both Path and string objects. The *args
|
argument that accepts both Path and string objects. The *args
|
||||||
are concatenated with os.path.join() which is used to construct
|
are concatenated with os.path.join() which is used to construct
|
||||||
the Path object. These changes obsoleted the problematic
|
the Path object. These changes obsoleted the problematic
|
||||||
|
@ -429,7 +429,7 @@ Open Issues
|
||||||
should it live? In its own module or in os?
|
should it live? In its own module or in os?
|
||||||
|
|
||||||
* Due to Path subclassing either str or unicode, the following
|
* Due to Path subclassing either str or unicode, the following
|
||||||
non-magic, public methods are availible on Path objects:
|
non-magic, public methods are available on Path objects:
|
||||||
|
|
||||||
capitalize(), center(), count(), decode(), encode(),
|
capitalize(), center(), count(), decode(), encode(),
|
||||||
endswith(), expandtabs(), find(), index(), isalnum(),
|
endswith(), expandtabs(), find(), index(), isalnum(),
|
||||||
|
@ -525,7 +525,7 @@ Examples
|
||||||
|
|
||||||
References and Footnotes
|
References and Footnotes
|
||||||
|
|
||||||
[1] Method is not guaranteed to be availible on all platforms.
|
[1] Method is not guaranteed to be available on all platforms.
|
||||||
|
|
||||||
[2] "(idea) subclassable string: path object?", van Rossum, 2001
|
[2] "(idea) subclassable string: path object?", van Rossum, 2001
|
||||||
http://mail.python.org/pipermail/python-dev/2001-August/016663.html
|
http://mail.python.org/pipermail/python-dev/2001-August/016663.html
|
||||||
|
|
Loading…
Reference in New Issue