Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Backed out r65069, pending fixing it in Windows. | Eric Smith | 2008-07-17 | 2 | -22/+2 |
| | |||||
* | catch socket.error errors in badCertTest | Bill Janssen | 2008-07-17 | 1 | -0/+3 |
| | |||||
* | Issue 3382: Make '%F' and float.__format__('F') convert results to upper case. | Eric Smith | 2008-07-17 | 2 | -2/+22 |
| | |||||
* | try to fix test_threading on the Windows bot | Benjamin Peterson | 2008-07-17 | 1 | -1/+2 |
| | |||||
* | Merged revisions 65053-65054 via svnmerge from | Benjamin Peterson | 2008-07-17 | 4 | -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 ........ | ||||
* | Byte items *can* be chars in 2.6. | Georg Brandl | 2008-07-16 | 1 | -1/+2 |
| | |||||
* | #3156: fix consistency in what type bytearray methods accept as items. | Georg Brandl | 2008-07-16 | 1 | -16/+25 |
| | | | | Also rename confusing "item" parameters to "index". | ||||
* | #3312: fix two sqlite3 crashes. | Georg Brandl | 2008-07-16 | 1 | -0/+14 |
| | |||||
* | #3345: fix docstring. | Georg Brandl | 2008-07-16 | 1 | -4/+5 |
| | |||||
* | #3305: self->stream can be NULL. | Georg Brandl | 2008-07-16 | 1 | -0/+9 |
| | |||||
* | #3045: fix pydoc behavior for TEMP path with spaces. | Georg Brandl | 2008-07-16 | 1 | -2/+2 |
| | |||||
* | Apply patch for 874900: threading module can deadlock after fork | Jesse Noller | 2008-07-16 | 2 | -1/+110 |
| | |||||
* | Merged revisions 65025 via svnmerge from | Benjamin Peterson | 2008-07-16 | 1 | -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 ........ | ||||
* | lib2to3 isn't broken anymore, so we can run the test | Benjamin Peterson | 2008-07-16 | 1 | -2/+1 |
| | |||||
* | Merged revisions 64863,64868,64870,64942,65001-65002,65017-65018 via ↵ | Benjamin Peterson | 2008-07-16 | 5 | -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 Noller | 2008-07-16 | 5 | -57/+64 |
| | | | | and replaces it with ForkingPickler.register(), which should resolve the conflict with the global registry/ctypes | ||||
* | Apply patch for issue 3090: ARCHFLAGS parsing incorrect | Jesse Noller | 2008-07-16 | 1 | -2/+1 |
| | |||||
* | Issue #3360: Fix incorrect parsing of "020000000000.0". | Mark Dickinson | 2008-07-16 | 1 | -0/+4 |
| | |||||
* | disable lib2to3 in the trunk. It's broken just for 2.6 | Benjamin Peterson | 2008-07-16 | 1 | -1/+2 |
| | |||||
* | Complete issue 3083: add alternate (#) formatting to bin, oct, hex in ↵ | Eric Smith | 2008-07-16 | 1 | -1/+12 |
| | | | | str.format(). | ||||
* | Fix float.from_hex tests. It appears that Linux/ia64 doesn't like | Mark Dickinson | 2008-07-15 | 1 | -4/+4 |
| | | | | | computing 2.0**-1074 accurately. Using ldexp(1.0, -1074) should be safer. | ||||
* | Fix test on 64-bit platforms. | Thomas Heller | 2008-07-15 | 1 | -1/+1 |
| | |||||
* | Issue #3008: add instance method float.hex and class method float.fromhex | Mark Dickinson | 2008-07-15 | 1 | -1/+386 |
| | | | | to convert floats to and from hexadecimal strings respectively. | ||||
* | Revert 3270 patch: self._address is in pretty widespread use, need to revisit | Jesse Noller | 2008-07-15 | 1 | -3/+5 |
| | |||||
* | Issue #3258: Fix an assertion error (in debug build) and a crash (in | Thomas Heller | 2008-07-15 | 1 | -0/+20 |
| | | | | | release build) when the format string of a pointer to an incomplete structure is created. | ||||
* | Issue 2235: __hash__ is once again inherited by default, but inheritance can ↵ | Nick Coghlan | 2008-07-15 | 7 | -76/+97 |
| | | | | be blocked explicitly so that collections.Hashable remains meaningful | ||||
* | multiprocessing/connection.py patch to remove fqdn oddness for issue 3270 | Jesse Noller | 2008-07-15 | 1 | -4/+0 |
| | |||||
* | Added '#' formatting to integers. This adds the 0b, 0o, or 0x prefix for ↵ | Eric Smith | 2008-07-15 | 2 | -0/+45 |
| | | | | bin, oct, hex. There's still one failing case, and I need to finish the docs. I hope to finish those today. | ||||
* | fix test_py3kwarns | Benjamin Peterson | 2008-07-14 | 38 | -57/+60 |
| | | | | The fact that this was failing and went unnoticed so long seems like a good argument for being able to enable and disble py3kwarnings through Python. | ||||
* | Fixed test failure on Win64 machines. | Robert Schuppenies | 2008-07-14 | 1 | -8/+5 |
| | |||||
* | remove sys.version_info check for 3.0 | Benjamin Peterson | 2008-07-13 | 1 | -5/+1 |
| | |||||
* | remove bytes alias | Benjamin Peterson | 2008-07-13 | 1 | -7/+0 |
| | |||||
* | Fix issue 3221 by emitting a RuntimeWarning instead of raising SystemError ↵ | Nick Coghlan | 2008-07-13 | 1 | -3/+33 |
| | | | | when the parent module can't be found during an absolute import (likely due to non-PEP 361 aware code which sets a module level __package__ attribute) | ||||
* | Make test.test_support.catch_warnings more robust as discussed on ↵ | Nick Coghlan | 2008-07-13 | 4 | -63/+94 |
| | | | | python-dev. Also add explicit tests for itto test_warnings. | ||||
* | dummy_thread.acquire() would return None if no waitflag argument was given. It | Brett Cannon | 2008-07-13 | 2 | -6/+4 |
| | | | | | | | should have returned True. Fixes issue #3339. Thanks, Henk Punt for the report and Andrii v. Mishkovskiyi for attempting a patch. | ||||
* | #1778443 robotparser fixes from Aristotelis Mikropoulos | Benjamin Peterson | 2008-07-12 | 1 | -6/+3 |
| | |||||
* | Fixed test for asyncore. | Josiah Carlson | 2008-07-11 | 1 | -3/+3 |
| | |||||
* | Fix for the AttributeError in test_asynchat. | Josiah Carlson | 2008-07-11 | 1 | -1/+1 |
| | |||||
* | #3342: In tracebacks, printed source lines were not indented since r62555. | Amaury Forgeot d'Arc | 2008-07-11 | 1 | -1/+1 |
| | | | | #3343: Py_DisplaySourceLine should be a private function. Rename it to _Py_DisplaySourceLine. | ||||
* | #3317 in zipfile module, restore the previous names of global variables: | Amaury Forgeot d'Arc | 2008-07-11 | 1 | -55/+27 |
| | | | | | | some applications relied on them. Also remove duplicated lines. | ||||
* | Added garbage collector overhead and optional default return value to | Robert Schuppenies | 2008-07-10 | 1 | -0/+23 |
| | | | | sys.getsizeof. | ||||
* | Suppress -3 warnings in unittest.py | Raymond Hettinger | 2008-07-10 | 1 | -5/+12 |
| | |||||
* | Clear the -3 warnings in optparse.py | Raymond Hettinger | 2008-07-10 | 1 | -15/+9 |
| | |||||
* | Added additional __sizeof__ implementations and addressed comments made in | Robert Schuppenies | 2008-07-10 | 1 | -18/+47 |
| | | | | Issue3122. | ||||
* | Issue 3285: Fractions from_float() and from_decimal() accept Integral arguments. | Raymond Hettinger | 2008-07-10 | 2 | -10/+10 |
| | |||||
* | Issue 3301: Bisect functions behaved badly when lo was negative. | Raymond Hettinger | 2008-07-10 | 2 | -0/+16 |
| | |||||
* | Fixed Issue3122 and extended sys.getsizeof tests for built-in types. | Robert Schuppenies | 2008-07-10 | 1 | -67/+172 |
| | |||||
* | Use operator.index() instead of n.__index__(). | Raymond Hettinger | 2008-07-10 | 1 | -5/+2 |
| | |||||
* | Issue 3287: Raise correct exception for float inputs. | Raymond Hettinger | 2008-07-10 | 2 | -7/+9 |
| | |||||
* | Issue 2517: Allow unicode messages in Exceptions again by correctly ↵ | Nick Coghlan | 2008-07-08 | 1 | -0/+1 |
| | | | | bypassing the instance dictionary when looking up __unicode__ on new-style classes |