Fix 'the the' error
This commit is contained in:
parent
c61ac6d3cd
commit
532382f5dc
|
@ -502,7 +502,7 @@ Naming Conventions
|
||||||
only.) The conventions are about the same as those for functions.
|
only.) The conventions are about the same as those for functions.
|
||||||
|
|
||||||
Modules that are designed for use via "from M import *" should use the
|
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
|
convention of prefixing such globals with an underscore (which you might
|
||||||
want to do to indicate these globals are "module non-public").
|
want to do to indicate these globals are "module non-public").
|
||||||
|
|
||||||
|
|
|
@ -276,7 +276,7 @@ OverflowWarning
|
||||||
import warnings
|
import warnings
|
||||||
warnings.filterwarnings("default", "", OverflowWarning)
|
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().
|
module documentation for filterwarnings().
|
||||||
|
|
||||||
- If the OverflowWarning warning is turned into an error,
|
- If the OverflowWarning warning is turned into an error,
|
||||||
|
|
|
@ -51,7 +51,7 @@ Supported Kinds of Ints and Floats
|
||||||
long, and must support at least one kind of floating point number,
|
long, and must support at least one kind of floating point number,
|
||||||
equivalent to the present float.
|
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,
|
dependent, as at present, except for the "long integer" kind,
|
||||||
which can hold an arbitrary integer.
|
which can hold an arbitrary integer.
|
||||||
|
|
||||||
|
|
|
@ -159,7 +159,7 @@ looks something like::
|
||||||
hi_there.pack(side=Tkinter.LEFT)
|
hi_there.pack(side=Tkinter.LEFT)
|
||||||
root.mainloop()
|
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::
|
declaration::
|
||||||
|
|
||||||
root = Tkinter.Tk()
|
root = Tkinter.Tk()
|
||||||
|
|
|
@ -947,7 +947,7 @@ writing an algorithm that only handle contiguous memory could do the following:
|
||||||
/* Optional:
|
/* Optional:
|
||||||
|
|
||||||
if, after processing, we want to copy data from buffer back
|
if, after processing, we want to copy data from buffer back
|
||||||
into the the object
|
into the object
|
||||||
|
|
||||||
we could do
|
we could do
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Reference in New Issue