summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Replace all map(None, a) with list(a).Georg Brandl2008-07-185-7/+7
|
* now that test_lib2to3 actually works and isn't extremely slow, we don't need ↵Benjamin Peterson2008-07-182-7/+3
| | | | the lib2to3 resource
* backport test_fileioBenjamin Peterson2008-07-181-0/+240
|
* Document the different meaning of precision for {:f} and {:g}.Georg Brandl2008-07-181-8/+12
| | | | Also document how inf and nan are formatted. #3404.
* Correct attribute name.Georg Brandl2008-07-181-1/+1
|
* Remove duplicate entry in __all__.Georg Brandl2008-07-181-1/+1
|
* Issue #3389: Allow resolving dotted names for handlers in logging ↵Vinay Sajip2008-07-181-3/+6
| | | | configuration files. Thanks to Philip Jenvey for the patch.
* Issue #3389: Allow resolving dotted names for handlers in logging ↵Vinay Sajip2008-07-181-1/+5
| | | | configuration files. Thanks to Philip Jenvey for the patch.
* Issue #3389: Allow resolving dotted names for handlers in logging ↵Vinay Sajip2008-07-181-2/+7
| | | | configuration files. Thanks to Philip Jenvey for the patch.
* Issue #3389: Allow resolving dotted names for handlers in logging ↵Vinay Sajip2008-07-181-1/+4
| | | | configuration files. Thanks to Philip Jenvey for the patch.
* Last bit of a fix for issue3381 (addon for my patch in r65061)Ronald Oussoren2008-07-181-1/+1
|
* Post release cleanupBarry Warsaw2008-07-181-1/+1
|
* Tagging 2.6 beta 2.Barry Warsaw2008-07-181-0/+1
|
* Bumping to 2.6b2v2.6b2Barry Warsaw2008-07-185-6/+6
|
* Fix issue 3395, update _debugInfo to be _debug_infoJesse Noller2008-07-172-1/+3
|
* Backed out r65069, pending fixing it in Windows.Eric Smith2008-07-178-53/+23
|
* catch socket.error errors in badCertTestBill Janssen2008-07-171-0/+3
|
* Issue 3382: Make '%F' and float.__format__('F') convert results to upper case.Eric Smith2008-07-178-23/+53
|
* #3381 fix framework builds on 10.4Benjamin Peterson2008-07-172-41/+57
|
* try to fix test_threading on the Windows botBenjamin Peterson2008-07-171-1/+2
|
* news note for r63052Gregory P. Smith2008-07-171-0/+4
|
* Merged revisions 65053-65054 via svnmerge fromBenjamin Peterson2008-07-174-340/+100
| | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/sandbox/trunk/2to3/lib2to3 ........ r65053 | benjamin.peterson | 2008-07-16 21:04:12 -0500 (Wed, 16 Jul 2008) | 1 line massive optimizations for 2to3 (especially fix_imports) from Nick Edds ........ r65054 | benjamin.peterson | 2008-07-16 21:05:09 -0500 (Wed, 16 Jul 2008) | 1 line normalize whitespace ........
* #3388: add a paragraph about using "with" for file objects.Georg Brandl2008-07-161-0/+10
|
* Byte items *can* be chars in 2.6.Georg Brandl2008-07-161-1/+2
|
* Backport part of r65043.Georg Brandl2008-07-161-2/+1
|
* Use _getbytevalue() in init too.Georg Brandl2008-07-161-10/+3
|
* #3156: fix consistency in what type bytearray methods accept as items.Georg Brandl2008-07-163-56/+67
| | | | Also rename confusing "item" parameters to "index".
* #3312: fix two sqlite3 crashes.Georg Brandl2008-07-164-3/+29
|
* #3345: fix docstring.Georg Brandl2008-07-161-4/+5
|
* #3305: self->stream can be NULL.Georg Brandl2008-07-162-2/+11
|
* #1608818: errno can get set by every call to readdir().Georg Brandl2008-07-162-8/+12
|
* #3045: fix pydoc behavior for TEMP path with spaces.Georg Brandl2008-07-161-2/+2
|
* fix framework install on Mac 10.4Benjamin Peterson2008-07-162-3/+15
|
* Apply patch for 874900: threading module can deadlock after forkJesse Noller2008-07-163-1/+130
|
* Merged revisions 65025 via svnmerge fromBenjamin Peterson2008-07-161-1/+1
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/sandbox/trunk/2to3/lib2to3 ........ r65025 | benjamin.peterson | 2008-07-16 13:46:30 -0500 (Wed, 16 Jul 2008) | 1 line remove use of has_key ........
* Renamed a parameter in calc_number_widths, for consistency with the same ↵Eric Smith2008-07-161-32/+32
| | | | parameter in fill_non_digits.
* lib2to3 isn't broken anymore, so we can run the testBenjamin Peterson2008-07-161-2/+1
|
* Merged revisions 64863,64868,64870,64942,65001-65002,65017-65018 via ↵Benjamin Peterson2008-07-165-34/+318
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | svnmerge from svn+ssh://pythondev@svn.python.org/sandbox/trunk/2to3/lib2to3 ........ r64863 | brett.cannon | 2008-07-10 19:42:32 -0500 (Thu, 10 Jul 2008) | 1 line Add urlparse -> urllib.parse to fix_imports. ........ r64868 | brett.cannon | 2008-07-10 20:00:10 -0500 (Thu, 10 Jul 2008) | 1 line Add robotparser -> urllib.robotparser to fix_imports. ........ r64870 | brett.cannon | 2008-07-11 00:56:27 -0500 (Fri, 11 Jul 2008) | 6 lines Fix the fixers for the new dbm package. Had to create a new fixer (fix_imports2) which did fixes in post-order. This because ``import anydbm`` was being translated into ``import dbm`` which was then subsequently changed into ``import dbm.ndbm``; one transform too many. ........ r64942 | collin.winter | 2008-07-13 20:19:05 -0500 (Sun, 13 Jul 2008) | 1 line Add a comment explaining part of fix_imports.py ........ r65001 | brett.cannon | 2008-07-16 00:11:12 -0500 (Wed, 16 Jul 2008) | 2 lines Remove some extraneous whitespace. ........ r65002 | brett.cannon | 2008-07-16 00:12:04 -0500 (Wed, 16 Jul 2008) | 4 lines Implement a fixer for urllib(2). Thanks Nick Edds for the patch. ........ r65017 | benjamin.peterson | 2008-07-16 11:04:19 -0500 (Wed, 16 Jul 2008) | 1 line fix 2to3 in Python 2.6 ........ r65018 | benjamin.peterson | 2008-07-16 11:55:21 -0500 (Wed, 16 Jul 2008) | 1 line normalize whitespace ........
* Apply Amaury's patch to multiprocessing for issue 3125, removes the copy_reg ↵Jesse Noller2008-07-166-57/+69
| | | | and replaces it with ForkingPickler.register(), which should resolve the conflict with the global registry/ctypes
* Apply patch for issue 3090: ARCHFLAGS parsing incorrectJesse Noller2008-07-161-2/+1
|
* Issue #3360: Fix incorrect parsing of "020000000000.0".Mark Dickinson2008-07-163-10/+8
|
* Add Antoine.Martin v. Löwis2008-07-161-0/+3
|
* disable lib2to3 in the trunk. It's broken just for 2.6Benjamin Peterson2008-07-161-1/+2
|
* Complete issue 3083: add alternate (#) formatting to bin, oct, hex in ↵Eric Smith2008-07-164-33/+89
| | | | str.format().
* Keep sorted.Georg Brandl2008-07-161-3/+3
|
* Move label to correct heading.Georg Brandl2008-07-151-3/+2
|
* Fix float.from_hex tests. It appears that Linux/ia64 doesn't likeMark Dickinson2008-07-151-4/+4
| | | | | computing 2.0**-1074 accurately. Using ldexp(1.0, -1074) should be safer.
* Fix test on 64-bit platforms.Thomas Heller2008-07-151-1/+1
|
* Add Victor Stinner, he provided the patch for issue #3313.Thomas Heller2008-07-151-0/+1
|
* Issue #3313: Contrary to the man page, a failed dlopen() call does notThomas Heller2008-07-153-2/+11
| | | | always set a dlerror() message.