r55014 - peps/trunk/pep-0008.txt peps/trunk/pep-0237.txt peps/trunk/pep-0242.txt peps/trunk/pep-0359.txt peps/trunk/pep-3118.txt

Author: andrew.kuchling Date: Sat Apr 28 02:36:48 2007 New Revision: 55014 Modified: peps/trunk/pep-0008.txt peps/trunk/pep-0237.txt peps/trunk/pep-0242.txt peps/trunk/pep-0359.txt peps/trunk/pep-3118.txt Log: Fix 'the the' error Modified: peps/trunk/pep-0008.txt ============================================================================== --- peps/trunk/pep-0008.txt (original) +++ peps/trunk/pep-0008.txt Sat Apr 28 02:36:48 2007 @@ -502,7 +502,7 @@ only.) The conventions are about the same as those for functions. Modules that are designed for use via "from M import *" should use the - __all__ mechanism to prevent exporting globals, or use the the older + __all__ mechanism to prevent exporting globals, or use the older convention of prefixing such globals with an underscore (which you might want to do to indicate these globals are "module non-public"). Modified: peps/trunk/pep-0237.txt ============================================================================== --- peps/trunk/pep-0237.txt (original) +++ peps/trunk/pep-0237.txt Sat Apr 28 02:36:48 2007 @@ -276,7 +276,7 @@ import warnings warnings.filterwarnings("default", "", OverflowWarning) - See the python man page for the -W option and the the warnings + See the python man page for the -W option and the warnings module documentation for filterwarnings(). - If the OverflowWarning warning is turned into an error, Modified: peps/trunk/pep-0242.txt ============================================================================== --- peps/trunk/pep-0242.txt (original) +++ peps/trunk/pep-0242.txt Sat Apr 28 02:36:48 2007 @@ -51,7 +51,7 @@ long, and must support at least one kind of floating point number, equivalent to the present float. - The range and precision of the these required kinds are processor + The range and precision of these required kinds are processor dependent, as at present, except for the "long integer" kind, which can hold an arbitrary integer. Modified: peps/trunk/pep-0359.txt ============================================================================== --- peps/trunk/pep-0359.txt (original) +++ peps/trunk/pep-0359.txt Sat Apr 28 02:36:48 2007 @@ -159,7 +159,7 @@ hi_there.pack(side=Tkinter.LEFT) root.mainloop() -could be rewritten to group the the Button's function with its +could be rewritten to group the Button's function with its declaration:: root = Tkinter.Tk() Modified: peps/trunk/pep-3118.txt ============================================================================== --- peps/trunk/pep-3118.txt (original) +++ peps/trunk/pep-3118.txt Sat Apr 28 02:36:48 2007 @@ -947,7 +947,7 @@ /* Optional: if, after processing, we want to copy data from buffer back - into the the object + into the object we could do */
participants (1)
-
andrew.kuchling