[Python-checkins] 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 (original) (raw)
andrew.kuchling python-checkins at python.org
Sat Apr 28 02:36:50 CEST 2007
- Previous message: [Python-checkins] r55013 - in python/branches/py3k-struni: Include/pydebug.h Lib/distutils/ccompiler.py Lib/distutils/cmd.py Lib/distutils/command/build_clib.py Lib/distutils/command/build_ext.py Lib/distutils/command/build_py.py Lib/distutils/command/config.py Lib/distutils/command/install.py Lib/distutils/command/install_data.py Lib/distutils/dir_util.py Lib/distutils/dist.py Lib/distutils/extension.py Lib/distutils/fancy_getopt.py Lib/distutils/filelist.py Lib/distutils/unixccompiler.py Lib/locale.py Lib/os.py Lib/sre_compile.py Lib/test/test_builtin.py Modules/posixmodule.c Objects/moduleobject.c Objects/unicodeobject.c Python/ast.c Python/bltinmodule.c Python/ceval.c Python/getargs.c Python/import.c Python/pythonrun.c
- Next message: [Python-checkins] buildbot warnings in alpha Debian 2.5
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
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 backinto the the object
into the object we could do */
- Previous message: [Python-checkins] r55013 - in python/branches/py3k-struni: Include/pydebug.h Lib/distutils/ccompiler.py Lib/distutils/cmd.py Lib/distutils/command/build_clib.py Lib/distutils/command/build_ext.py Lib/distutils/command/build_py.py Lib/distutils/command/config.py Lib/distutils/command/install.py Lib/distutils/command/install_data.py Lib/distutils/dir_util.py Lib/distutils/dist.py Lib/distutils/extension.py Lib/distutils/fancy_getopt.py Lib/distutils/filelist.py Lib/distutils/unixccompiler.py Lib/locale.py Lib/os.py Lib/sre_compile.py Lib/test/test_builtin.py Modules/posixmodule.c Objects/moduleobject.c Objects/unicodeobject.c Python/ast.c Python/bltinmodule.c Python/ceval.c Python/getargs.c Python/import.c Python/pythonrun.c
- Next message: [Python-checkins] buildbot warnings in alpha Debian 2.5
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]