mirror of https://github.com/python/cpython
Blocked revisions 73001-73002,73004,73006,73008,73027,73029,73031,73049,73060,73068,73071-73074,73076,73083,73109,73121,73135,73147,73151,73166,73170,73174,73182,73184,73190,73196-73197,73201,73212,73238,73240,73243,73247,73250,73252,73270,73272,73275,73278-73282,73303,73308,73312,73314,73317-73318,73321,73324-73326,73328,73331,73334-73336,73340,73345,73350,73353-73354,73361-73363,73367,73370,73372,73376,73382,73393-73398,73400-73402,73404-73405,73409,73415,73417-73423,73432-73433,73435-73436,73439,73445,73447-73448,73457,73460-73461,73465,73471-73472,73480,73485-73486,73488-73490,73495-73496,73499,73501-73502,73509,73513-73514,73518-73519,73532,73534,73536-73537,73540,73546,73563-73564,73603,73605-73606,73614-73615,73627,73638,73660,73665,73675,73679,73686,73688,73697,73701,73710,73712,73714,73717,73720,73725,73744,73750,73756-73757,73762,73767,73773,73781,73786,73801,73814-73815,73818-73819,73821-73822,73825-73827,73834,73839,73841,73846-73847,73854,73858,73863-73864,73871,73877,73884,73888,73891,73895,73901,73916,73925-73926,73930-73933,73944,73962-73963,73985-73986,73988-73991,73994-73995,73998,74000 via svnmerge
................ r73001 | raymond.hettinger | 2009-05-29 03:36:26 +0200 (Fr, 29 Mai 2009) | 1 line Issue 5150: Add rstrip() option to IDLE's format menu. ................ r73002 | raymond.hettinger | 2009-05-29 03:46:48 +0200 (Fr, 29 Mai 2009) | 3 lines Deprecate contextlib.nested(). The with-statement now provides this functionality directly. ................ r73004 | jeffrey.yasskin | 2009-05-29 05:44:31 +0200 (Fr, 29 Mai 2009) | 5 lines Fix nearly all compilation warnings under Apple gcc-4.0. Tested with OPT="-g -Wall -Wstrict-prototypes -Werror" in both --with-pydebug mode and --without. There's still a batch of non-prototype warnings in Xlib.h that I don't know how to fix. ................ r73006 | raymond.hettinger | 2009-05-29 06:58:52 +0200 (Fr, 29 Mai 2009) | 1 line Issue 5982: Classmethod and staticmethod expose wrapped function with __func__. ................ r73008 | tarek.ziade | 2009-05-29 10:08:07 +0200 (Fr, 29 Mai 2009) | 1 line Fixed #6131: test_modulefinder leaked when run after test_distutils ................ r73027 | michael.foord | 2009-05-29 22:33:46 +0200 (Fr, 29 Mai 2009) | 1 line Add test discovery to unittest. Issue 6001. ................ r73029 | raymond.hettinger | 2009-05-29 23:20:41 +0200 (Fr, 29 Mai 2009) | 1 line Move the basic examples section back to the beginning. ................ r73031 | benjamin.peterson | 2009-05-29 23:48:19 +0200 (Fr, 29 Mai 2009) | 1 line add with statements ................ r73049 | georg.brandl | 2009-05-30 12:45:40 +0200 (Sa, 30 Mai 2009) | 1 line Rewrap a few long lines. ................ r73060 | gregory.p.smith | 2009-05-30 21:58:11 +0200 (Sa, 30 Mai 2009) | 2 lines Add more examples to the ipaddr documentation. ................ r73068 | antoine.pitrou | 2009-05-30 23:45:40 +0200 (Sa, 30 Mai 2009) | 3 lines Update ACKS ................ r73071 | georg.brandl | 2009-05-31 16:15:25 +0200 (So, 31 Mai 2009) | 1 line Fix markup. ................ r73072 | antoine.pitrou | 2009-05-31 16:20:14 +0200 (So, 31 Mai 2009) | 4 lines Issue #6152: New option '-j'/'--multiprocess' for regrtest allows running regression tests in parallel, shortening the total runtime. ................ r73073 | benjamin.peterson | 2009-05-31 16:43:00 +0200 (So, 31 Mai 2009) | 1 line remove function import ................ r73074 | benjamin.peterson | 2009-05-31 17:00:27 +0200 (So, 31 Mai 2009) | 1 line __enter__ and __exit__ must be on the class ................ r73076 | antoine.pitrou | 2009-05-31 20:05:51 +0200 (So, 31 Mai 2009) | 4 lines Uninitialized file type would lead to __exit__ lookup failure when site.py tries to read *.pth files on interpreter startup. ................ r73083 | guilherme.polo | 2009-05-31 23:31:21 +0200 (So, 31 Mai 2009) | 1 line Improved PanedWindow.add's docstring. 'subcomand' is a Tcl term, and the possible options and values are the same accepted by paneconfigure (not configure). ................ r73109 | gregory.p.smith | 2009-06-01 19:40:41 +0200 (Mo, 01 Jun 2009) | 6 lines Sync up __version__ number with the version of the ipaddr-py project this library came from that it matches. Remove the former apache license text now that its been contributed to PSF to avoid confusion. ................ r73121 | tarek.ziade | 2009-06-02 00:22:13 +0200 (Di, 02 Jun 2009) | 1 line improved distutils.dist test coverage, pep-8 compliancy ................ r73135 | gregory.p.smith | 2009-06-02 07:25:34 +0200 (Di, 02 Jun 2009) | 3 lines Fixes issue6169: it was possible for two ipaddr network addresses to compare as both < and > than eachother. ................ r73147 | tarek.ziade | 2009-06-02 17:58:43 +0200 (Di, 02 Jun 2009) | 1 line improved distutils.spawn test coverage + cleaned it up ................ r73151 | michael.foord | 2009-06-02 20:08:27 +0200 (Di, 02 Jun 2009) | 1 line Restore default testRunner argument in unittest.main to None. Issue 6177 ................ r73166 | tarek.ziade | 2009-06-03 12:26:26 +0200 (Mi, 03 Jun 2009) | 1 line added some tests for distutils.extension + code cleanup ................ r73170 | tarek.ziade | 2009-06-03 13:12:08 +0200 (Mi, 03 Jun 2009) | 1 line more cleanup and test coverage for distutils.extension ................ r73174 | tarek.ziade | 2009-06-03 13:20:44 +0200 (Mi, 03 Jun 2009) | 1 line assertion message was dropped ................ r73182 | josiah.carlson | 2009-06-03 21:46:21 +0200 (Mi, 03 Jun 2009) | 4 lines This fixes bug 5798 on OS X. This should also fix disconnect behavior cross-platform. ................ r73184 | josiah.carlson | 2009-06-03 21:51:52 +0200 (Mi, 03 Jun 2009) | 2 lines Fix for line wrap ugly. ................ r73190 | georg.brandl | 2009-06-04 01:23:45 +0200 (Do, 04 Jun 2009) | 2 lines Avoid PendingDeprecationWarnings emitted by deprecated unittest methods. ................ r73196 | benjamin.peterson | 2009-06-04 03:40:29 +0200 (Do, 04 Jun 2009) | 1 line use the offical api ................ r73197 | tarek.ziade | 2009-06-04 09:31:52 +0200 (Do, 04 Jun 2009) | 1 line improved test coverage for distutils.command.install and cleaned it up ................ r73201 | georg.brandl | 2009-06-04 10:58:32 +0200 (Do, 04 Jun 2009) | 1 line #5767: remove sgmlop support from xmlrpclib; the sgmlop parser does not do much validation and is no longer much faster than e.g. the cElementTree XMLParser. ................ r73212 | georg.brandl | 2009-06-04 12:10:41 +0200 (Do, 04 Jun 2009) | 1 line Better name for "Ctor". ................ r73238 | hirokazu.yamamoto | 2009-06-05 07:15:58 +0200 (Fr, 05 Jun 2009) | 1 line Fix test__locale on windows (Backport of r72365) ................ r73240 | eric.smith | 2009-06-05 14:33:26 +0200 (Fr, 05 Jun 2009) | 1 line Removed tests so that test_float pass on Windows. See issue 6198. ................ r73243 | tarek.ziade | 2009-06-05 15:37:29 +0200 (Fr, 05 Jun 2009) | 1 line reverting r72823 : Python trunk has to use latin-1 encoding ................ r73247 | michael.foord | 2009-06-05 16:14:34 +0200 (Fr, 05 Jun 2009) | 1 line Fix unittest discovery tests for Windows. Issue 6199 ................ r73250 | benjamin.peterson | 2009-06-05 21:09:28 +0200 (Fr, 05 Jun 2009) | 1 line only test for named pipe when os.stat doesn't raise #6209 ................ r73252 | georg.brandl | 2009-06-06 07:54:34 +0200 (Sa, 06 Jun 2009) | 1 line #6206: fix test__locale. ................ r73270 | benjamin.peterson | 2009-06-07 18:24:48 +0200 (So, 07 Jun 2009) | 1 line backport r73268 ................ r73272 | kristjan.jonsson | 2009-06-07 18:43:23 +0200 (So, 07 Jun 2009) | 2 lines http://bugs.python.org/issue6192 Add a feature to disable the Nagle algorithm on sockets in TCPServer ................ r73275 | georg.brandl | 2009-06-07 22:37:52 +0200 (So, 07 Jun 2009) | 1 line Add Ezio. ................ r73278 | benjamin.peterson | 2009-06-08 00:33:11 +0200 (Mo, 08 Jun 2009) | 1 line inherit from object ................ r73279 | benjamin.peterson | 2009-06-08 00:35:00 +0200 (Mo, 08 Jun 2009) | 1 line always inherit from an appropiate base class ................ r73280 | benjamin.peterson | 2009-06-08 00:54:35 +0200 (Mo, 08 Jun 2009) | 1 line use booleans for flags ................ r73281 | benjamin.peterson | 2009-06-08 00:55:36 +0200 (Mo, 08 Jun 2009) | 1 line remove has_key ................ r73282 | benjamin.peterson | 2009-06-08 01:12:44 +0200 (Mo, 08 Jun 2009) | 1 line backport r73273 ................ r73303 | ronald.oussoren | 2009-06-08 22:54:59 +0200 (Mo, 08 Jun 2009) | 11 lines This checkin adds a symlink to the lib directory of a framework install of Python (on OSX), and the end result of that is that the combination of ``python-config --ldflags`` and ``python-config --libs`` refers to an actually existing location. I've done this in preference to changing python-config to specify '-framework Python' for linking because that doesn't work when you have multiple versions of python installed (because '-framework Python' will always link to the 'Current' version of the framework, without a possibility to specify a specific version). ................ r73308 | benjamin.peterson | 2009-06-09 00:18:32 +0200 (Di, 09 Jun 2009) | 1 line remove useless assertion ................ r73312 | benjamin.peterson | 2009-06-09 01:44:13 +0200 (Di, 09 Jun 2009) | 1 line remove error checks already done in set_context() ................ r73314 | eric.smith | 2009-06-09 14:38:08 +0200 (Di, 09 Jun 2009) | 1 line Restored a test that was erroneously removed. See issue 6198. ................ r73317 | benjamin.peterson | 2009-06-09 19:24:26 +0200 (Di, 09 Jun 2009) | 1 line make ast.c depend on the grammar ................ r73318 | benjamin.peterson | 2009-06-09 19:29:51 +0200 (Di, 09 Jun 2009) | 1 line explain why keyword names are not just NAME ................ r73321 | benjamin.peterson | 2009-06-09 23:13:43 +0200 (Di, 09 Jun 2009) | 1 line update symbol.py from with statement changes ................ r73324 | amaury.forgeotdarc | 2009-06-10 00:53:16 +0200 (Mi, 10 Jun 2009) | 2 lines Avoid invoking the parser/compiler just to test the presence of a function. ................ r73325 | amaury.forgeotdarc | 2009-06-10 01:08:13 +0200 (Mi, 10 Jun 2009) | 8 lines #6201: Fix test_winreg on Windows: since the introduction of the SETUP_WITH opcode, __enter__ and __exit__ methods must belong to the type, and are not retrieved at the instance level (__dict__ or __getattr__). Add a note in whatsnew about this incompatibility; old style classes are not affected. ................ r73326 | amaury.forgeotdarc | 2009-06-10 01:18:50 +0200 (Mi, 10 Jun 2009) | 2 lines Both kind of types are concerned. ................ r73328 | amaury.forgeotdarc | 2009-06-10 01:37:11 +0200 (Mi, 10 Jun 2009) | 3 lines Missing import in test_curses, uncovered by some buildbots. (There are still a few test files that don't use the standard layout) ................ r73331 | benjamin.peterson | 2009-06-10 15:45:31 +0200 (Mi, 10 Jun 2009) | 1 line fix spelling ................ r73334 | raymond.hettinger | 2009-06-10 18:15:02 +0200 (Mi, 10 Jun 2009) | 1 line Issue 6256: Fix stacklevel in warning message. ................ r73335 | raymond.hettinger | 2009-06-10 18:15:40 +0200 (Mi, 10 Jun 2009) | 1 line Fix signed/unsigned compiler warning. ................ r73336 | tarek.ziade | 2009-06-10 20:49:50 +0200 (Mi, 10 Jun 2009) | 1 line Distutils: started code cleanup and test coverage for cygwinccompiler ................ r73340 | amaury.forgeotdarc | 2009-06-10 22:30:19 +0200 (Mi, 10 Jun 2009) | 2 lines Fix a typo spotted by Nick Coghlan. ................ r73345 | tarek.ziade | 2009-06-11 10:43:26 +0200 (Do, 11 Jun 2009) | 1 line removed the last string.split() call ................ r73350 | vinay.sajip | 2009-06-11 11:23:41 +0200 (Do, 11 Jun 2009) | 1 line Issue #5262: Fixed bug in next roll over time computation in TimedRotatingFileHandler. ................ r73353 | vinay.sajip | 2009-06-11 11:53:35 +0200 (Do, 11 Jun 2009) | 1 line Issue #5262: Improved fix. ................ r73354 | tarek.ziade | 2009-06-11 11:55:09 +0200 (Do, 11 Jun 2009) | 1 line pep8-fied cygwinccompiler module ................ r73361 | benjamin.peterson | 2009-06-11 18:25:52 +0200 (Do, 11 Jun 2009) | 1 line remove duplicate check ................ r73362 | benjamin.peterson | 2009-06-11 19:49:38 +0200 (Do, 11 Jun 2009) | 1 line revert r73361 ................ r73363 | benjamin.peterson | 2009-06-11 19:51:17 +0200 (Do, 11 Jun 2009) | 1 line use multi-with syntax ................ r73367 | raymond.hettinger | 2009-06-12 00:04:00 +0200 (Fr, 12 Jun 2009) | 1 line Add example of how to do key lookups with bisect(). ................ r73370 | benjamin.peterson | 2009-06-12 00:06:46 +0200 (Fr, 12 Jun 2009) | 105 lines Merged revisions 72523,72950-72951,72994,73003,73033,73036-73040,73091-73093,73096,73179-73181,73192,73231,73244,73255-73256,73365 via svnmerge from svn+ssh://pythondev@svn.python.org/sandbox/trunk/2to3/lib2to3 ........ r72523 | benjamin.peterson | 2009-05-09 14:42:26 -0500 (Sat, 09 May 2009) | 1 line remove parenthesis ........ r72950 | benjamin.peterson | 2009-05-26 18:19:45 -0500 (Tue, 26 May 2009) | 1 line remove unused imports ........ r72951 | benjamin.peterson | 2009-05-26 18:27:00 -0500 (Tue, 26 May 2009) | 1 line this is no longer executable ........ r72994 | benjamin.peterson | 2009-05-28 15:32:54 -0500 (Thu, 28 May 2009) | 1 line fix test_all_fixers on Windows #6134 ........ r73003 | benjamin.peterson | 2009-05-28 21:57:28 -0500 (Thu, 28 May 2009) | 4 lines make 2to3 test utilities easier to use with other applications (3to2) Patch by Joe Amenta ........ r73033 | benjamin.peterson | 2009-05-29 16:58:32 -0500 (Fri, 29 May 2009) | 1 line update grammar for multi with statement ........ r73036 | benjamin.peterson | 2009-05-29 17:33:20 -0500 (Fri, 29 May 2009) | 1 line simplify fix_unicode ........ r73037 | benjamin.peterson | 2009-05-29 17:53:03 -0500 (Fri, 29 May 2009) | 1 line add custom error for pattern syntax errors ........ r73038 | benjamin.peterson | 2009-05-29 17:55:00 -0500 (Fri, 29 May 2009) | 1 line complain if details are attached to a token ........ r73039 | benjamin.peterson | 2009-05-29 18:00:28 -0500 (Fri, 29 May 2009) | 1 line add a test for whitespace ........ r73040 | benjamin.peterson | 2009-05-29 18:01:17 -0500 (Fri, 29 May 2009) | 1 line a fix for emacs highlighting ........ r73091 | benjamin.peterson | 2009-05-31 20:55:25 -0500 (Sun, 31 May 2009) | 1 line deprecate set_prefix() and get_prefix() in favor of a prefix property ........ r73092 | benjamin.peterson | 2009-05-31 21:00:51 -0500 (Sun, 31 May 2009) | 1 line change hideous java naming scheme ........ r73093 | benjamin.peterson | 2009-05-31 21:01:39 -0500 (Sun, 31 May 2009) | 1 line remove dated comment ........ r73096 | benjamin.peterson | 2009-05-31 21:40:53 -0500 (Sun, 31 May 2009) | 1 line group tests ........ r73179 | benjamin.peterson | 2009-06-03 13:09:53 -0500 (Wed, 03 Jun 2009) | 1 line handle the case where there's multiple trailers #6185 ........ r73180 | benjamin.peterson | 2009-06-03 13:18:05 -0500 (Wed, 03 Jun 2009) | 1 line scrap __main__ section ........ r73181 | benjamin.peterson | 2009-06-03 13:24:48 -0500 (Wed, 03 Jun 2009) | 1 line remove shebang lines and __main__ sections ........ r73192 | benjamin.peterson | 2009-06-03 19:16:30 -0500 (Wed, 03 Jun 2009) | 4 lines actually test something here Thanks to Joe Amenta for noticing.y ........ r73231 | benjamin.peterson | 2009-06-04 13:38:50 -0500 (Thu, 04 Jun 2009) | 1 line remove unused variable ........ r73244 | benjamin.peterson | 2009-06-05 08:39:25 -0500 (Fri, 05 Jun 2009) | 1 line allow fixers to give different options in setUp ........ r73255 | benjamin.peterson | 2009-06-06 11:23:46 -0500 (Sat, 06 Jun 2009) | 1 line fix the except fixer on one line suites #6222 ........ r73256 | benjamin.peterson | 2009-06-06 11:27:40 -0500 (Sat, 06 Jun 2009) | 1 line test one-line else and finally clauses ........ r73365 | benjamin.peterson | 2009-06-11 17:01:32 -0500 (Thu, 11 Jun 2009) | 1 line normalize whitespace ........ ................ r73372 | raymond.hettinger | 2009-06-12 00:08:10 +0200 (Fr, 12 Jun 2009) | 1 line Move comment to correct line. ................ r73376 | benjamin.peterson | 2009-06-12 00:29:23 +0200 (Fr, 12 Jun 2009) | 1 line remove check for case handled in sub-function ................ r73382 | raymond.hettinger | 2009-06-12 01:14:53 +0200 (Fr, 12 Jun 2009) | 1 line Issue 6261: Clarify behavior of random.uniform(). ................ r73393 | alexandre.vassalotti | 2009-06-12 20:56:57 +0200 (Fr, 12 Jun 2009) | 2 lines Clear reference to the static PyExc_RecursionErrorInst in _PyExc_Fini. ................ r73394 | antoine.pitrou | 2009-06-12 22:14:08 +0200 (Fr, 12 Jun 2009) | 3 lines Issue #6215: backport the 3.1 io lib ................ r73395 | antoine.pitrou | 2009-06-12 22:36:25 +0200 (Fr, 12 Jun 2009) | 4 lines Restore the old test_file.py (for the builtin file object) as a new file named test_file2k.py ................ r73396 | antoine.pitrou | 2009-06-12 22:41:52 +0200 (Fr, 12 Jun 2009) | 4 lines Try to restore the old test_file and test_univnewlines as new, different files (with the right revisions this time, hopefully) ................ r73397 | antoine.pitrou | 2009-06-12 22:54:21 +0200 (Fr, 12 Jun 2009) | 3 lines Re-enable testing of builtin open() in test_bufio in test_largefile ................ r73398 | alexandre.vassalotti | 2009-06-12 22:57:12 +0200 (Fr, 12 Jun 2009) | 3 lines Add const qualifier to PyErr_SetFromErrnoWithFilename and to PyErr_SetFromErrnoWithUnicodeFilename. ................ r73400 | alexandre.vassalotti | 2009-06-12 23:43:47 +0200 (Fr, 12 Jun 2009) | 2 lines Delete outdated make file for building the parser with MSVC 6. ................ r73401 | alexandre.vassalotti | 2009-06-12 23:52:14 +0200 (Fr, 12 Jun 2009) | 2 lines Make pickling of OrderedDict instances more efficient. ................ r73402 | alexandre.vassalotti | 2009-06-13 01:03:35 +0200 (Sa, 13 Jun 2009) | 6 lines Revert r73401 per Raymond Hettinger's request. The rational is the change might cause imcompatiblity problems with PyYAML. In addition, Raymond wants to kept the different versions of collections synchronized across Python versions. ................ r73404 | benjamin.peterson | 2009-06-13 03:40:00 +0200 (Sa, 13 Jun 2009) | 1 line keep the slice.step field as NULL if no step expression is given ................ r73405 | benjamin.peterson | 2009-06-13 05:46:30 +0200 (Sa, 13 Jun 2009) | 1 line prevent import statements from assigning to None ................ r73409 | benjamin.peterson | 2009-06-13 15:06:21 +0200 (Sa, 13 Jun 2009) | 1 line allow importing from a module named None if it has an 'as' clause ................ r73415 | benjamin.peterson | 2009-06-13 16:25:08 +0200 (Sa, 13 Jun 2009) | 1 line use 'rc' for release candidates for consistency ................ r73417 | benjamin.peterson | 2009-06-13 17:42:23 +0200 (Sa, 13 Jun 2009) | 1 line special case release candidates ................ r73418 | benjamin.peterson | 2009-06-13 17:48:04 +0200 (Sa, 13 Jun 2009) | 1 line handle different rc format ................ r73419 | benjamin.peterson | 2009-06-13 18:19:19 +0200 (Sa, 13 Jun 2009) | 1 line set Print.values to NULL if there are no values ................ r73420 | benjamin.peterson | 2009-06-13 19:08:53 +0200 (Sa, 13 Jun 2009) | 1 line give a better error message when deleting () ................ r73421 | benjamin.peterson | 2009-06-13 22:23:33 +0200 (Sa, 13 Jun 2009) | 1 line when no module is given in a 'from' relative import, make ImportFrom.module NULL ................ r73422 | benjamin.peterson | 2009-06-13 22:30:48 +0200 (Sa, 13 Jun 2009) | 1 line update ast version ................ r73423 | hirokazu.yamamoto | 2009-06-14 05:05:54 +0200 (So, 14 Jun 2009) | 1 line Updated MSVC files to follow r73394. ................ r73432 | amaury.forgeotdarc | 2009-06-14 23:20:40 +0200 (So, 14 Jun 2009) | 3 lines #6227: Because of a wrong indentation, the test was not testing what it should. Ensure that the snippet in doctest_aliases actually contains aliases. ................ r73433 | benjamin.peterson | 2009-06-15 00:36:48 +0200 (Mo, 15 Jun 2009) | 1 line backport r73430 ................ r73435 | tarek.ziade | 2009-06-16 01:04:29 +0200 (Di, 16 Jun 2009) | 1 line code cleanup ................ r73436 | tarek.ziade | 2009-06-16 01:30:13 +0200 (Di, 16 Jun 2009) | 1 line Issue #6286: distutils upload command now uses urllib2 ................ r73439 | benjamin.peterson | 2009-06-16 02:29:31 +0200 (Di, 16 Jun 2009) | 1 line don't mask encoding errors when decoding a string #6289 ................ r73445 | tarek.ziade | 2009-06-16 10:31:01 +0200 (Di, 16 Jun 2009) | 1 line starting distutils.ccompiler test coverage and cleanup ................ r73447 | georg.brandl | 2009-06-16 19:41:33 +0200 (Di, 16 Jun 2009) | 1 line Add tabularcolumns directive for tables with bullet lists in them. ................ r73448 | georg.brandl | 2009-06-16 19:43:44 +0200 (Di, 16 Jun 2009) | 1 line Remove unused macro. ................ r73457 | benjamin.peterson | 2009-06-17 01:13:09 +0200 (Mi, 17 Jun 2009) | 1 line add underscores ................ r73460 | benjamin.peterson | 2009-06-17 05:23:04 +0200 (Mi, 17 Jun 2009) | 1 line remove unused 'encoding' member from the compiler struct ................ r73461 | hirokazu.yamamoto | 2009-06-17 09:05:33 +0200 (Mi, 17 Jun 2009) | 1 line Issue #6215: Fixed to use self.open() instead of open() or io.open(). ................ r73465 | nick.coghlan | 2009-06-17 14:12:15 +0200 (Mi, 17 Jun 2009) | 1 line Issue 6288: update the contextlib.nested() docs to explain why it has been deprecated and should generally be avoided ................ r73471 | georg.brandl | 2009-06-19 00:24:26 +0200 (Fr, 19 Jun 2009) | 1 line #6276: Remove usage of nested() in favor of new with statement with multiple managers. ................ r73472 | amaury.forgeotdarc | 2009-06-19 00:32:50 +0200 (Fr, 19 Jun 2009) | 5 lines #6189: The subprocess.py module should be kept compatible with python 2.2 (On windows, you still have to change one line to use pywin32 instead of the _subprocess helper module) ................ r73480 | facundo.batista | 2009-06-19 20:02:28 +0200 (Fr, 19 Jun 2009) | 3 lines Issue #6274. Fixed a potential FD leak in subprocess.py. ................ r73485 | benjamin.peterson | 2009-06-20 00:07:47 +0200 (Sa, 20 Jun 2009) | 1 line remove duplicate test ................ r73486 | benjamin.peterson | 2009-06-20 00:09:17 +0200 (Sa, 20 Jun 2009) | 1 line add missing assertion #6313 ................ r73488 | benjamin.peterson | 2009-06-20 00:16:28 +0200 (Sa, 20 Jun 2009) | 1 line show that this one isn't used ................ r73489 | benjamin.peterson | 2009-06-20 00:21:12 +0200 (Sa, 20 Jun 2009) | 1 line use closures ................ r73490 | tarek.ziade | 2009-06-20 15:57:20 +0200 (Sa, 20 Jun 2009) | 1 line Fixed #6164 AIX specific linker argument in Distutils unixcompiler ................ r73495 | guilherme.polo | 2009-06-21 19:22:50 +0200 (So, 21 Jun 2009) | 4 lines Issue #5450: Moved tests involving loading tk from Lib/test/test_tcl to Lib/lib-tk/test/test_tkinter/test_loadtk in order to follow the behaviour of test_ttkguionly. ................ r73496 | vinay.sajip | 2009-06-21 19:37:27 +0200 (So, 21 Jun 2009) | 1 line Issue #6314: logging.basicConfig() performs extra checks on the "level" argument. ................ r73499 | steven.bethard | 2009-06-21 23:03:41 +0200 (So, 21 Jun 2009) | 1 line Fix memory bug in bdist_msi. (Commit okayed in issue6319.) ................ r73501 | benjamin.peterson | 2009-06-22 01:01:07 +0200 (Mo, 22 Jun 2009) | 1 line don't need to add the name 'lambda' as assigned ................ r73502 | benjamin.peterson | 2009-06-22 01:03:36 +0200 (Mo, 22 Jun 2009) | 1 line remove tmpname support since it's no longer used ................ r73509 | amaury.forgeotdarc | 2009-06-22 21:33:48 +0200 (Mo, 22 Jun 2009) | 2 lines #4490 Fix sample code run by "python -m xml.sax.xmlreader" ................ r73513 | benjamin.peterson | 2009-06-23 03:18:57 +0200 (Di, 23 Jun 2009) | 1 line fix grammar ................ r73514 | benjamin.peterson | 2009-06-23 05:01:56 +0200 (Di, 23 Jun 2009) | 1 line remove some unused symtable constants ................ r73518 | nick.coghlan | 2009-06-23 12:19:30 +0200 (Di, 23 Jun 2009) | 1 line Issue 6288: Update contextlib.nested() docstring to reflect new documentation ................ r73519 | nick.coghlan | 2009-06-23 12:51:02 +0200 (Di, 23 Jun 2009) | 1 line Remove markup from docstring ................ r73532 | raymond.hettinger | 2009-06-23 22:59:43 +0200 (Di, 23 Jun 2009) | 3 lines Issue 6329: Fix iteration for memoryviews. ................ r73534 | amaury.forgeotdarc | 2009-06-23 23:09:09 +0200 (Di, 23 Jun 2009) | 2 lines Remove the ipaddr module per discussion on python-dev ................ r73536 | raymond.hettinger | 2009-06-23 23:32:28 +0200 (Di, 23 Jun 2009) | 1 line Issue 6305: Clarify error message for large arguments to itertools.islice(). ................ r73537 | amaury.forgeotdarc | 2009-06-23 23:53:46 +0200 (Di, 23 Jun 2009) | 3 lines Remove last remnants of the ipaddr package. The changes in mcast.py come from the first version of the patch for issue5379. ................ r73540 | raymond.hettinger | 2009-06-24 00:20:04 +0200 (Mi, 24 Jun 2009) | 1 line Add procedural note. ................ r73546 | kristjan.jonsson | 2009-06-24 11:17:04 +0200 (Mi, 24 Jun 2009) | 2 lines http://bugs.python.org/issue6192 Move the newly introduced disable_nagle_algorithm flag into the StreamRequestHandler, where it is more appropriate. ................ r73563 | amaury.forgeotdarc | 2009-06-25 23:29:32 +0200 (Do, 25 Jun 2009) | 2 lines Fix a compilation warning on Windows ................ r73564 | amaury.forgeotdarc | 2009-06-26 00:29:29 +0200 (Fr, 26 Jun 2009) | 6 lines #2016 Fix a crash in function call when the **kwargs dictionary is mutated during the function call setup. This even gives a slight speedup, probably because tuple allocation is faster than PyMem_NEW. ................ r73603 | hirokazu.yamamoto | 2009-06-28 12:23:00 +0200 (So, 28 Jun 2009) | 1 line Issue #4856: Remove checks for win NT. ................ r73605 | georg.brandl | 2009-06-28 14:10:18 +0200 (So, 28 Jun 2009) | 1 line Remove stray pychecker directive. ................ r73606 | martin.v.loewis | 2009-06-28 14:24:23 +0200 (So, 28 Jun 2009) | 2 lines Fix types in logic to compute help file name. ................ r73614 | benjamin.peterson | 2009-06-28 18:08:02 +0200 (So, 28 Jun 2009) | 1 line add two generic macros for peeking and setting in the stack ................ r73615 | benjamin.peterson | 2009-06-28 18:14:07 +0200 (So, 28 Jun 2009) | 1 line use stack macros ................ r73627 | benjamin.peterson | 2009-06-28 21:27:55 +0200 (So, 28 Jun 2009) | 1 line return locals and cells in get_locals() not bound globals, though ................ r73638 | kristjan.jonsson | 2009-06-28 23:04:17 +0200 (So, 28 Jun 2009) | 2 lines http://bugs.python.org/issue6267 Cumulative patch to http and xmlrpc ................ r73660 | mark.dickinson | 2009-06-29 00:37:13 +0200 (Mo, 29 Jun 2009) | 1 line Remove unused stdint.h includes ................ r73665 | alexandre.vassalotti | 2009-06-29 03:01:51 +0200 (Mo, 29 Jun 2009) | 2 lines Update docstrings for sys.getdlopenflags() and sys.setdlopenflags(). ................ r73675 | hirokazu.yamamoto | 2009-06-29 13:27:03 +0200 (Mo, 29 Jun 2009) | 3 lines Issue #4856: Py_GetFileAttributesEx[AW] are not needed because GetFileAttributesEx[AW] won't fail with ERROR_CALL_NOT_IMPLEMENTED on win NT. Reviewed by Amaury Forgeot d'Arc. ................ r73679 | antoine.pitrou | 2009-06-29 16:14:56 +0200 (Mo, 29 Jun 2009) | 3 lines Backport fix for buglet from py3k ................ r73686 | hirokazu.yamamoto | 2009-06-29 17:52:21 +0200 (Mo, 29 Jun 2009) | 1 line Issue #6368: Fixed unused variable warning on Unix. ................ r73688 | tarek.ziade | 2009-06-29 18:13:39 +0200 (Mo, 29 Jun 2009) | 1 line Fixed 6365: wrong inplace location for build_ext if the extension had dots ................ r73697 | raymond.hettinger | 2009-06-29 21:10:29 +0200 (Mo, 29 Jun 2009) | 1 line Issue 6370: Performance issue with collections.Counter(). ................ r73701 | mark.dickinson | 2009-06-30 17:32:30 +0200 (Di, 30 Jun 2009) | 3 lines Issue #6347: Add inttypes.h to the pyport.h #includes; fixes a build failure on HP-UX 11.00. ................ r73710 | benjamin.peterson | 2009-07-01 00:14:33 +0200 (Mi, 01 Jul 2009) | 1 line provide a dummy __exit__ on windows ................ r73712 | ezio.melotti | 2009-07-01 00:51:06 +0200 (Mi, 01 Jul 2009) | 1 line Fixed defaultTestCase -> defaultTestResult ................ r73714 | benjamin.peterson | 2009-07-01 00:57:08 +0200 (Mi, 01 Jul 2009) | 1 line convert usage of fail* to assert* ................ r73717 | benjamin.peterson | 2009-07-01 01:30:12 +0200 (Mi, 01 Jul 2009) | 1 line use assert* methods in test_unittest ................ r73720 | benjamin.peterson | 2009-07-01 02:36:41 +0200 (Mi, 01 Jul 2009) | 4 lines fix a few cases where automated fail -> assert translation messed up Thanks Joe Amenta ................ r73725 | benjamin.peterson | 2009-07-01 02:49:09 +0200 (Mi, 01 Jul 2009) | 21 lines Merged revisions 73379,73388,73507,73722 via svnmerge from svn+ssh://pythondev@svn.python.org/sandbox/trunk/2to3/lib2to3 ........ r73379 | benjamin.peterson | 2009-06-11 18:06:21 -0500 (Thu, 11 Jun 2009) | 1 line use a real conditional expresion ........ r73388 | benjamin.peterson | 2009-06-12 09:44:29 -0500 (Fri, 12 Jun 2009) | 1 line fix typo in last fix ........ r73507 | benjamin.peterson | 2009-06-22 13:32:04 -0500 (Mon, 22 Jun 2009) | 1 line remove svn:executable property ........ r73722 | benjamin.peterson | 2009-06-30 19:44:30 -0500 (Tue, 30 Jun 2009) | 1 line replace fail* with assert* ........ ................ r73744 | benjamin.peterson | 2009-07-01 15:34:35 +0200 (Mi, 01 Jul 2009) | 1 line proxy the __exit__ call ................ r73750 | benjamin.peterson | 2009-07-02 01:45:19 +0200 (Do, 02 Jul 2009) | 1 line small optimization: avoid popping the current block until we have to ................ r73756 | tarek.ziade | 2009-07-02 14:47:54 +0200 (Do, 02 Jul 2009) | 1 line raising bdist_dumb test coverage ................ r73757 | tarek.ziade | 2009-07-02 14:51:56 +0200 (Do, 02 Jul 2009) | 1 line cleaned up the bdist_dumb module ................ r73762 | tarek.ziade | 2009-07-02 16:20:47 +0200 (Do, 02 Jul 2009) | 1 line pep8-fied and cleaned up distutils.util ................ r73767 | jesus.cea | 2009-07-02 16:30:18 +0200 (Do, 02 Jul 2009) | 1 line multiprocessing doesn't compile in Solaris because a typo ................ r73773 | benjamin.peterson | 2009-07-02 18:51:56 +0200 (Do, 02 Jul 2009) | 1 line remove this test; a module level warning is enough ................ r73781 | benjamin.peterson | 2009-07-02 23:38:36 +0200 (Do, 02 Jul 2009) | 1 line test that compile() accepts the future flag ................ r73786 | benjamin.peterson | 2009-07-03 00:56:16 +0200 (Fr, 03 Jul 2009) | 1 line condense with assertRaises ................ r73801 | tarek.ziade | 2009-07-03 11:01:07 +0200 (Fr, 03 Jul 2009) | 1 line cleaned up distutils.command.build_py ................ r73814 | tarek.ziade | 2009-07-03 21:01:12 +0200 (Fr, 03 Jul 2009) | 1 line basic tests to raise distutils.file_util coverage ................ r73815 | tarek.ziade | 2009-07-03 21:14:49 +0200 (Fr, 03 Jul 2009) | 1 line cleaned distutils.file_util ................ r73818 | gregory.p.smith | 2009-07-03 22:48:31 +0200 (Fr, 03 Jul 2009) | 2 lines Adds the select.PIPE_BUF attribute to expose the system constant. ................ r73819 | kristjan.jonsson | 2009-07-04 01:07:07 +0200 (Sa, 04 Jul 2009) | 2 lines http://bugs.python.org/issue6381 some platforms may raise ENOTCONN if the stack has disconnected the socket on behalf of the peer. ................ r73821 | kristjan.jonsson | 2009-07-04 01:26:02 +0200 (Sa, 04 Jul 2009) | 2 lines http://bugs.python.org/issue6267 Incorrect exception handling for xmlrp client retry ................ r73822 | kristjan.jonsson | 2009-07-04 01:29:50 +0200 (Sa, 04 Jul 2009) | 2 lines http://bugs.python.org/issue6267 Incorrect exception handling for xmlrpc client retry ................ r73825 | gregory.p.smith | 2009-07-04 03:49:29 +0200 (Sa, 04 Jul 2009) | 9 lines Use select.poll() in subprocess, when available, rather than select() so that it does not fail when file descriptors are large. Fixes issue3392. Patch largely contributed by Frank Chu (fpmc) with some improvements by me. See http://bugs.python.org/issue3392. Candidate for backporting to release26-maint as it is a bug fix and changes no public API. ................ r73826 | gregory.p.smith | 2009-07-04 03:55:11 +0200 (Sa, 04 Jul 2009) | 2 lines news entry for r73825 ................ r73827 | tarek.ziade | 2009-07-04 04:02:41 +0200 (Sa, 04 Jul 2009) | 1 line Fixed #6413: fixed log level in distutils.dist.announce ................ r73834 | tarek.ziade | 2009-07-04 04:59:19 +0200 (Sa, 04 Jul 2009) | 1 line using print statements when used for user interaction ................ r73839 | gregory.p.smith | 2009-07-04 10:42:10 +0200 (Sa, 04 Jul 2009) | 3 lines Merge r73838 from py3k branch. Use the nondeprecated unittest method names. ................ r73841 | ezio.melotti | 2009-07-04 16:58:27 +0200 (Sa, 04 Jul 2009) | 1 line if zlib -> skipUnless(zlib) and minor cleanups ................ r73846 | alexandre.vassalotti | 2009-07-05 06:22:40 +0200 (So, 05 Jul 2009) | 6 lines Issue 2370: Add Python 3 warnings for the removal of operator.isCallable and operator.sequenceIncludes. Patch contributed by Jeff Balogh (and updated slightly by me). ................ r73847 | alexandre.vassalotti | 2009-07-05 06:25:46 +0200 (So, 05 Jul 2009) | 2 lines Fix bad variable name in r73846. ................ r73854 | alexandre.vassalotti | 2009-07-05 08:33:41 +0200 (So, 05 Jul 2009) | 2 lines Backport test cases added in r73852. ................ r73858 | mark.dickinson | 2009-07-05 12:01:24 +0200 (So, 05 Jul 2009) | 3 lines Issues #1530559, #1741130: Fix various inconsistencies in struct.pack integer packing, and reenable some previously broken tests. ................ r73863 | kristjan.jonsson | 2009-07-05 22:56:57 +0200 (So, 05 Jul 2009) | 2 lines http://bugs.python.org/issue6382 close_request() (which can send a socket.shutdown()) must be called by the child process in a forking server. The parent must merely close the socket handle. ................ r73864 | tarek.ziade | 2009-07-06 14:50:46 +0200 (Mo, 06 Jul 2009) | 1 line Fixed #6377: distutils compiler switch ignored (and added a deprecation warning if compiler is not used as supposed = a string option) ................ r73871 | alexandre.vassalotti | 2009-07-07 04:17:30 +0200 (Di, 07 Jul 2009) | 7 lines Grow the allocated buffer in PyUnicode_EncodeUTF7 to avoid buffer overrun. Without this change, test_unicode.UnicodeTest.test_codecs_utf7 crashes in debug mode. What happens is the unicode string u'\U000abcde' with a length of 1 encodes to the string '+2m/c3g-' of length 8. Since only 5 bytes is reserved in the buffer, a buffer overrun occurs. ................ r73877 | kristjan.jonsson | 2009-07-07 11:01:34 +0200 (Di, 07 Jul 2009) | 2 lines http://bugs.python.org/issue6382 added the shutdown_request() which can perform shutdown before calling close. This is needed for the ForkingMixIn because different close semantics are required for child and parent process. shutdown_request(), for TCP servers, calls socket.shutdown() and then calls close_request(). Therefore, this is not an backwards incompatible change, since subclasses that continue to override close_request() continue to work. ................ r73884 | mark.dickinson | 2009-07-07 13:08:23 +0200 (Di, 07 Jul 2009) | 1 line Add skipping to struct test that only applies when overflow masking is in effect ................ r73888 | mark.dickinson | 2009-07-07 16:15:45 +0200 (Di, 07 Jul 2009) | 3 lines Expand test coverage for struct.pack with native integer packing; reorganize the test_struct module to remove duplicated code and tests. ................ r73891 | mark.dickinson | 2009-07-07 17:08:28 +0200 (Di, 07 Jul 2009) | 3 lines Issue #1523: Remove deprecated overflow masking in struct module, and make sure that out-of-range values consistently raise struct.error. ................ r73895 | tarek.ziade | 2009-07-09 00:40:51 +0200 (Do, 09 Jul 2009) | 1 line Sets the compiler attribute to keep the old behavior for third-party packages. ................ r73901 | tarek.ziade | 2009-07-09 09:42:42 +0200 (Do, 09 Jul 2009) | 1 line PendingDeprecationWarning -> DeprecationWarning in build_ext ................ r73916 | amaury.forgeotdarc | 2009-07-10 00:37:22 +0200 (Fr, 10 Jul 2009) | 5 lines #6416: Fix compilation of the select module on Windows, as well as test_subprocess: PIPE_BUF is not defined on Windows, and probably has no meaning there. Anyway the subprocess module uses another way to perform non-blocking reads (with a thread) ................ r73925 | tarek.ziade | 2009-07-10 11:57:15 +0200 (Fr, 10 Jul 2009) | 1 line Added test coverage for distutils.command.build ................ r73926 | tarek.ziade | 2009-07-10 12:00:21 +0200 (Fr, 10 Jul 2009) | 1 line cleaned up distutils.command.build ................ r73930 | amaury.forgeotdarc | 2009-07-10 18:47:42 +0200 (Fr, 10 Jul 2009) | 2 lines #6447: typo in subprocess docstring ................ r73931 | ezio.melotti | 2009-07-10 22:25:56 +0200 (Fr, 10 Jul 2009) | 1 line more cleanups and if zlib -> skipUnless(zlib) ................ r73932 | kristjan.jonsson | 2009-07-11 10:44:43 +0200 (Sa, 11 Jul 2009) | 3 lines http://bugs.python.org/issue6460 Need to be careful with thread switching when testing the xmlrpc server. The server thread may not have updated stats when the client thread tests them. ................ r73933 | amaury.forgeotdarc | 2009-07-11 11:09:59 +0200 (Sa, 11 Jul 2009) | 3 lines Add basic tests for the return value of os.popen().close(). According to #6358, python 3.0 has a different implementation that behaves differently. ................ r73944 | tarek.ziade | 2009-07-11 12:48:31 +0200 (Sa, 11 Jul 2009) | 1 line cleaned up distutils.build_ext module ................ r73962 | benjamin.peterson | 2009-07-12 00:15:13 +0200 (So, 12 Jul 2009) | 1 line put downloaded test support files in Lib/test/data instead of the cwd ................ r73963 | benjamin.peterson | 2009-07-12 00:25:24 +0200 (So, 12 Jul 2009) | 1 line ignore things in Lib/test/data/ ................ r73985 | benjamin.peterson | 2009-07-12 23:18:55 +0200 (So, 12 Jul 2009) | 1 line add Joe ................ r73986 | kristjan.jonsson | 2009-07-13 00:42:08 +0200 (Mo, 13 Jul 2009) | 2 lines http://bugs.python.org/issue6267 Add more tests for the xlmrpc.ServerProxy ................ r73988 | benjamin.peterson | 2009-07-13 01:40:33 +0200 (Mo, 13 Jul 2009) | 1 line fix Tarek's name ................ r73989 | benjamin.peterson | 2009-07-13 01:44:43 +0200 (Mo, 13 Jul 2009) | 1 line change encoding to utf-8 ................ r73990 | benjamin.peterson | 2009-07-13 01:49:23 +0200 (Mo, 13 Jul 2009) | 1 line fix another name ................ r73991 | benjamin.peterson | 2009-07-13 01:56:18 +0200 (Mo, 13 Jul 2009) | 1 line change encoding to utf-8 ................ r73994 | benjamin.peterson | 2009-07-13 02:03:20 +0200 (Mo, 13 Jul 2009) | 1 line fix umlaut ................ r73995 | vinay.sajip | 2009-07-13 13:21:05 +0200 (Mo, 13 Jul 2009) | 1 line Issue #6314: logging: Extra checks on the "level" argument in more places. ................ r73998 | amaury.forgeotdarc | 2009-07-13 21:14:17 +0200 (Mo, 13 Jul 2009) | 3 lines Set svn:eol-style=CRLF on all Visual Studio solution files. This should allow direct compilation from a downloaded source tar ball. ................ r74000 | amaury.forgeotdarc | 2009-07-13 22:01:11 +0200 (Mo, 13 Jul 2009) | 4 lines #1616979: Add the cp720 (Arabic DOS) encoding. Since there is no official mapping file from unicode.org, the codec file is generated on Windows with the new genwincodec.py script. ................
This commit is contained in:
parent
573d1df95b
commit
048e9683f7