Repair typos

This commit is contained in:
George Yoshida 2006-06-03 17:20:12 +00:00
parent d461fe1a8a
commit b8d461e922
3 changed files with 9 additions and 9 deletions

View File

@ -29,7 +29,7 @@ steps for compilation are:
Starting with Python 2.5, the above steps are now used. This change
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.
This document does not touch on how parsing works beyond what is needed
@ -515,7 +515,7 @@ Important Files
changed.
* 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.

View File

@ -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,
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
server is regularly synchronized, but lags behind the the read-write
CVS repository between synchronizations. As a result, users without
server is regularly synchronized, but lags behind the read-write CVS
repository between synchronizations. As a result, users without
commit access can see recent changes to the repository only after a
delay.

View File

@ -33,7 +33,7 @@ Background
were made to get the path module included in the Python standard
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
version should be included in the standard library.
@ -107,7 +107,7 @@ Rationale
the manipulation of file contents, for which file objects are
better suited.
- Platform incompatibilites are dealt with by not instantiating
- Platform incompatibilities are dealt with by not instantiating
system specific methods.
@ -389,7 +389,7 @@ Closed Issues
* The __div__() method was removed. Overloading the / (division)
operator may be "too much magic" and make path concatenation
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
are concatenated with os.path.join() which is used to construct
the Path object. These changes obsoleted the problematic
@ -429,7 +429,7 @@ Open Issues
should it live? In its own module or in os?
* 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(),
endswith(), expandtabs(), find(), index(), isalnum(),
@ -525,7 +525,7 @@ Examples
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
http://mail.python.org/pipermail/python-dev/2001-August/016663.html