summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Remove __long__ methods from UserString and from Demo/ classes.Mark Dickinson2009-01-113-10/+0
|
* Merged revisions 68527 via svnmerge fromMartin v. Löwis2009-01-112-0/+8
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r68527 | martin.v.loewis | 2009-01-11 10:43:55 +0100 (So, 11 Jan 2009) | 2 lines Issue #4895: Use _strdup on Windows CE. ........
* Merged revisions 68523 via svnmerge fromMartin v. Löwis2009-01-113-0/+4
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r68523 | martin.v.loewis | 2009-01-11 10:26:54 +0100 (So, 11 Jan 2009) | 2 lines Issue #4279: Fix build of parsermodule under Cygwin. ........
* ricos isn't supportedBenjamin Peterson2009-01-101-1/+0
|
* fix syntax in ctypes.utilBenjamin Peterson2009-01-101-2/+2
|
* Issue #4910: replace "long" with "int" in docstring for __long__ slot andMark Dickinson2009-01-103-16/+7
| | | | in documentation for PyNumber_Long.
* Corrected minor typo and added .currentmodule directives to fix missing ↵Vinay Sajip2009-01-101-3/+11
| | | | cross-references.
* Merged revisions 68499 via svnmerge fromMark Dickinson2009-01-101-1/+0
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r68499 | mark.dickinson | 2009-01-10 19:14:55 +0000 (Sat, 10 Jan 2009) | 2 lines Remove an unnecessary check from test_decimal. ........
* Merged revisions 68496 via svnmerge fromAntoine Pitrou2009-01-101-0/+6
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r68496 | antoine.pitrou | 2009-01-10 19:33:21 +0100 (sam., 10 janv. 2009) | 3 lines Add ACKS entries for some of the patches I've been committing. ........
* Blocked revisions 68487 via svnmergeBenjamin Peterson2009-01-100-0/+0
| | | | | | | | | ........ r68487 | matthias.klose | 2009-01-10 11:00:42 -0600 (Sat, 10 Jan 2009) | 3 lines - Issue #4861: ctypes.util.find_library(): Robustify. Fix library detection on biarch systems. Try to rely on ldconfig only, without using objdump and gcc. ........
* Merge r68487 from svn+ssh://pythondev@svn.python.org/python/trunk:Matthias Klose2009-01-102-4/+39
| | | | | - Issue #4861: ctypes.util.find_library(): Robustify. Fix library detection on biarch systems. Try to rely on ldconfig only, without using objdump and gcc.
* fix typo #4904Benjamin Peterson2009-01-101-1/+1
|
* Merged revisions 68484-68485 via svnmerge fromAntoine Pitrou2009-01-105-1/+85
| | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r68484 | antoine.pitrou | 2009-01-10 17:13:45 +0100 (sam., 10 janv. 2009) | 3 lines Issue #3860: GzipFile and BZ2File now support the context manager protocol. ........ r68485 | antoine.pitrou | 2009-01-10 17:15:24 +0100 (sam., 10 janv. 2009) | 1 line Add NEWS entry for r68484. ........
* Issue #4868: utf-8, utf-16 and latin1 decoding are now 2x to 4x faster. TheAntoine Pitrou2009-01-102-24/+211
| | | | | | | | common cases are optimized thanks to a dedicated fast path and a moderate amount of loop unrolling. This will especially help text I/O (we already register a 30% speedup on large reads on the io-c branch).
* Corrected an incorrect self-reference.Vinay Sajip2009-01-101-1/+0
|
* Minor documentation changes relating to NullHandler, the module used for ↵Vinay Sajip2009-01-101-2/+6
| | | | handlers and references to ConfigParser.
* Fixed 2to3 issue on tix module.Hirokazu Yamamoto2009-01-101-2/+2
|
* Commit miss.Hirokazu Yamamoto2009-01-101-2/+2
|
* Merged revisions 68468-68470 via svnmerge fromHirokazu Yamamoto2009-01-105-20/+130
| | | | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r68468 | hirokazu.yamamoto | 2009-01-10 17:09:43 +0900 | 1 line Bump up Tcl/Tk version on VC6. (tcl8.4.12 -> tcl8.5.2, tk8.4.12 -> tk8.5.2, tix8.4.0 -> tix8.4.3) ........ r68469 | hirokazu.yamamoto | 2009-01-10 17:12:09 +0900 | 1 line Link to debug version of Tcl/Tk when python is built as debug version. ........ r68470 | hirokazu.yamamoto | 2009-01-10 18:18:16 +0900 | 1 line Added helper script to build Tcl/Tk. ........
* Unblocked revisions 68425 via svnmergeBenjamin Peterson2009-01-100-0/+0
| | | | | | | | ........ r68425 | benjamin.peterson | 2009-01-08 20:56:32 -0600 (Thu, 08 Jan 2009) | 1 line fix markup ........
* Merged revisions 68462 via svnmerge fromAntoine Pitrou2009-01-092-1/+71
| | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r68462 | antoine.pitrou | 2009-01-09 22:40:55 +0100 (ven., 09 janv. 2009) | 6 lines Issue #4074: Change the criteria for doing a full garbage collection (i.e. collecting the oldest generation) so that allocating lots of objects without destroying them does not show quadratic performance. Based on a proposal by Martin von Löwis at http://mail.python.org/pipermail/python-dev/2008-June/080579.html. ........
* Fix bug introduced in r68451: stdio must always be opened in line-buffered modeAntoine Pitrou2009-01-091-7/+15
| | | | if isatty() is true.
* Issue #4604: Some objects of the I/O library could still be used afterAntoine Pitrou2009-01-093-36/+81
| | | | | having been closed (for instance, a read() call could return some previously buffered data). Patch by Dmitry Vasiliev.
* Buglet: fix unittest.main()Antoine Pitrou2009-01-091-1/+1
|
* Issue #4705: Fix the -u ("unbuffered binary stdout and stderr") command-lineAntoine Pitrou2009-01-095-13/+102
| | | | | | flag to work properly. Furthermore, when specifying -u, the text stdout and stderr streams have line-by-line buffering enabled (the default being to buffer arbitrary chunks of data). Patch by Victor Stinner, test by me.
* Blocked revisions 68439 via svnmergeHirokazu Yamamoto2009-01-090-0/+0
| | | | | | | | ........ r68439 | hirokazu.yamamoto | 2009-01-09 13:10:40 +0900 | 1 line Bump up bsddb version on VC6. (db-4.4.20 -> db-4.7.25) ........
* Merged revisions 68435 via svnmerge fromHirokazu Yamamoto2009-01-092-8/+8
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r68435 | hirokazu.yamamoto | 2009-01-09 12:32:46 +0900 | 1 line Bump up bzip2 version on VC6. (bzip2-1.0.3 -> bzip2-1.0.5) ........
* Merged revisions 68167,68276,68292-68293,68344 via svnmerge fromBenjamin Peterson2009-01-095-29/+171
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r68167 | vinay.sajip | 2009-01-02 12:53:04 -0600 (Fri, 02 Jan 2009) | 1 line Minor documentation changes relating to NullHandler, the module used for handlers and references to ConfigParser. ........ r68276 | tarek.ziade | 2009-01-03 18:04:49 -0600 (Sat, 03 Jan 2009) | 1 line fixed #1702551: distutils sdist was not pruning VCS directories under win32 ........ r68292 | skip.montanaro | 2009-01-04 04:36:58 -0600 (Sun, 04 Jan 2009) | 3 lines If user configures --without-gcc give preference to $CC instead of blindly assuming the compiler will be "cc". ........ r68293 | tarek.ziade | 2009-01-04 04:37:52 -0600 (Sun, 04 Jan 2009) | 1 line using clearer syntax ........ r68344 | marc-andre.lemburg | 2009-01-05 13:43:35 -0600 (Mon, 05 Jan 2009) | 7 lines Fix #4846 (Py_UNICODE_ISSPACE causes linker error) by moving the declaration into the extern "C" section. Add a few more comments and apply some minor edits to make the file contents fit the original structure again. ........
* Reduce the size of the _PyLong_DigitValue table.Raymond Hettinger2009-01-093-4/+8
|
* Merged revisions 67985 via svnmerge fromBenjamin Peterson2009-01-091-25/+19
| | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r67985 | antoine.pitrou | 2008-12-28 10:01:11 -0600 (Sun, 28 Dec 2008) | 4 lines Issue #2153: modernize coding style of unittest.py, remove obsolete compatibility stuff. Patch by Virgil Dupras. ........
* Blocked revisions 68243,68395,68432 via svnmergeBenjamin Peterson2009-01-090-0/+0
| | | | | | | | | | | | | | | | ........ r68243 | georg.brandl | 2009-01-03 16:15:42 -0600 (Sat, 03 Jan 2009) | 2 lines Add temporary code to fix the automatic doc build failure. ........ r68395 | raymond.hettinger | 2009-01-08 00:39:04 -0600 (Thu, 08 Jan 2009) | 1 line Forward port r68394 for issue 4816. ........ r68432 | benjamin.peterson | 2009-01-08 21:15:00 -0600 (Thu, 08 Jan 2009) | 1 line remove temporary code now ........
* Blocked revisions 68424-68426,68429-68430 via svnmergeBenjamin Peterson2009-01-090-0/+0
| | | | | | | | | | | | | | | | | | | | | | | | ........ r68424 | benjamin.peterson | 2009-01-08 20:53:35 -0600 (Thu, 08 Jan 2009) | 1 line specify what -3 warnings are about ........ r68425 | benjamin.peterson | 2009-01-08 20:56:32 -0600 (Thu, 08 Jan 2009) | 1 line fix markup ........ r68426 | benjamin.peterson | 2009-01-08 21:03:05 -0600 (Thu, 08 Jan 2009) | 1 line fix spelling ........ r68429 | benjamin.peterson | 2009-01-08 21:05:14 -0600 (Thu, 08 Jan 2009) | 1 line add -3 to manpage ........ r68430 | benjamin.peterson | 2009-01-08 21:07:27 -0600 (Thu, 08 Jan 2009) | 1 line be more specific in -3 option help ........
* Merged revisions 68288-68291,68325-68326,68338,68388,68393,68423 via ↵Benjamin Peterson2009-01-0916-46/+463
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ................ r68288 | benjamin.peterson | 2009-01-03 18:39:07 -0600 (Sat, 03 Jan 2009) | 1 line only check the actual compile() call for a SyntaxError ................ r68289 | georg.brandl | 2009-01-04 02:26:10 -0600 (Sun, 04 Jan 2009) | 2 lines Test commit. ................ r68290 | georg.brandl | 2009-01-04 04:23:49 -0600 (Sun, 04 Jan 2009) | 4 lines Add "suspicious" builder which finds leftover markup in the HTML files. Patch by Gabriel Genellina. ................ r68291 | georg.brandl | 2009-01-04 04:24:09 -0600 (Sun, 04 Jan 2009) | 2 lines Fix two issues found by the suspicious builder. ................ r68325 | benjamin.peterson | 2009-01-04 16:00:18 -0600 (Sun, 04 Jan 2009) | 1 line use Jinja 2.1.1 ................ r68326 | georg.brandl | 2009-01-04 16:03:10 -0600 (Sun, 04 Jan 2009) | 2 lines Update make.bat. ................ r68338 | neal.norwitz | 2009-01-04 21:57:25 -0600 (Sun, 04 Jan 2009) | 1 line Make sure to checkout any new packages ................ r68388 | benjamin.peterson | 2009-01-07 21:39:46 -0600 (Wed, 07 Jan 2009) | 1 line string exceptions are gone ................ r68393 | benjamin.peterson | 2009-01-07 22:01:00 -0600 (Wed, 07 Jan 2009) | 1 line use new sphinx modules ................ r68423 | benjamin.peterson | 2009-01-08 20:13:34 -0600 (Thu, 08 Jan 2009) | 29 lines Merged revisions 68306-68308,68340,68368,68422 via svnmerge from svn+ssh://pythondev@svn.python.org/sandbox/trunk/2to3/lib2to3 ........ r68306 | benjamin.peterson | 2009-01-04 12:27:19 -0600 (Sun, 04 Jan 2009) | 1 line fix_urllib: add mappings for the url parsing functions ........ r68307 | benjamin.peterson | 2009-01-04 12:30:01 -0600 (Sun, 04 Jan 2009) | 1 line remove duplicated function ........ r68308 | benjamin.peterson | 2009-01-04 12:50:34 -0600 (Sun, 04 Jan 2009) | 1 line turtle is no longer renamed ........ r68340 | georg.brandl | 2009-01-05 02:11:39 -0600 (Mon, 05 Jan 2009) | 2 lines Fix undefined locals in parse_tokens(). ........ r68368 | benjamin.peterson | 2009-01-06 17:56:10 -0600 (Tue, 06 Jan 2009) | 1 line fix typo (thanks to Robert Lehmann) ........ r68422 | benjamin.peterson | 2009-01-08 20:01:03 -0600 (Thu, 08 Jan 2009) | 1 line run the imports fixers after fix_import, so fix_import doesn't try to make stdlib renames into relative imports #4876 ........ ................
* Merged revisions 68415 via svnmerge fromTarek Ziadé2009-01-099-77/+175
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r68415 | tarek.ziade | 2009-01-09 00:56:31 +0100 (Fri, 09 Jan 2009) | 1 line fixed #4394 make the storage of the password optional in .pypirc ........
* Issue #4751: hashlib now releases the GIL when hashing large buffersAntoine Pitrou2009-01-084-91/+176
| | | | | (with a hardwired threshold of 2048 bytes), allowing better parallelization on multi-CPU systems. Contributed by Lukas Lueg (ebfe) and Victor Stinner.
* Merge in r68394 fixing itertools.permutations() and combinations().Raymond Hettinger2009-01-083-22/+47
|
* Fixed a crash in ctypes, when HAVE_USABLE_WCHAR_T is false.Thomas Heller2009-01-082-1/+4
| | | | Fixes issue #4867.
* Merged revisions 68378 via svnmerge fromMark Dickinson2009-01-072-6/+10
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r68378 | mark.dickinson | 2009-01-07 17:48:33 +0000 (Wed, 07 Jan 2009) | 2 lines Issue #4869: clarify documentation for random.expovariate. ........
* Merged revisions 68373 via svnmerge fromHirokazu Yamamoto2009-01-071-0/+4
| | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r68373 | hirokazu.yamamoto | 2009-01-07 18:42:28 +0900 | 2 lines Issue #4864: test_msvc9compiler failed on VC6/7. Reviewed by Amaury Forgeot d'Arc. ........
* Merged revisions 68360-68361 via svnmerge fromAntoine Pitrou2009-01-063-1/+145
| | | | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r68360 | antoine.pitrou | 2009-01-06 19:10:47 +0100 (mar., 06 janv. 2009) | 7 lines Issue #1180193: When importing a module from a .pyc (or .pyo) file with an existing .py counterpart, override the co_filename attributes of all code objects if the original filename is obsolete (which can happen if the file has been renamed, moved, or if it is accessed through different paths). Patch by Ziga Seilnacht and Jean-Paul Calderone. ........ r68361 | antoine.pitrou | 2009-01-06 19:34:08 +0100 (mar., 06 janv. 2009) | 3 lines Use shutil.rmtree rather than os.rmdir. ........
* Mini-optimization: use pack/unpack functions for argument tuples.Raymond Hettinger2009-01-061-3/+3
|
* Merged revisions 68312 via svnmerge fromMark Dickinson2009-01-052-107/+3
| | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r68312 | mark.dickinson | 2009-01-04 20:19:41 +0000 (Sun, 04 Jan 2009) | 4 lines It's wrong to use AC_REPLACE_FUNCS for hypot, since there's no longer any Python/hypot.c replacement file. Use AC_CHECK_FUNCS instead. This change should be backported to 2.6 and 3.0. ........
* Merged revisions 68311 via svnmerge fromMark Dickinson2009-01-051-1/+3
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r68311 | mark.dickinson | 2009-01-04 19:53:00 +0000 (Sun, 04 Jan 2009) | 2 lines Use C99 'isfinite' macro in preference to BSD-derived 'finite' function. ........
* #4614: document PyModule_Create and PyModuleDef struct.Georg Brandl2009-01-042-33/+102
|
* Merged revisions 68319 via svnmerge fromAntoine Pitrou2009-01-044-5/+95
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r68319 | antoine.pitrou | 2009-01-04 22:29:23 +0100 (dim., 04 janv. 2009) | 3 lines Issue #4272: Add an optional argument to the GzipFile constructor to override the timestamp in the gzip stream. ........
* Merged revisions 68317-68318 via svnmerge fromMark Dickinson2009-01-042-4/+6
| | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r68317 | mark.dickinson | 2009-01-04 21:22:02 +0000 (Sun, 04 Jan 2009) | 2 lines More Python 2.3 compatibility fixes for decimal.py. ........ r68318 | mark.dickinson | 2009-01-04 21:25:40 +0000 (Sun, 04 Jan 2009) | 2 lines Misc/NEWS entry for r68317 ........
* Merged revisions 68314 via svnmerge fromMark Dickinson2009-01-041-3/+11
| | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r68314 | mark.dickinson | 2009-01-04 21:10:56 +0000 (Sun, 04 Jan 2009) | 5 lines Fix Decimal.from_float to use valid Python 2.3 syntax, as per comments at top of decimal.py. (But note that the from_float method itself with still not be usable before Python 2.7.) See issue 4796 for discussion. ........
* Buglet: restore functioning of gzip as an executable when (de)compressing ↵Antoine Pitrou2009-01-041-4/+4
| | | | from stdin to stdout
* fix a lot of Tkinter importsBenjamin Peterson2009-01-0476-542/+542
|
* Merged revisions 68304 via svnmerge fromMark Dickinson2009-01-041-2/+2
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r68304 | mark.dickinson | 2009-01-04 17:02:05 +0000 (Sun, 04 Jan 2009) | 2 lines Fix HAVE_DECL_ISINF/ISNAN test (again). ........