| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | 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 svnmerge... | Benjamin Peterson | 2008-07-16 | 5 | -34/+318 |
|
|
* | Apply Amaury's patch to multiprocessing for issue 3125, removes the copy_reg ... | Jesse Noller | 2008-07-16 | 5 | -57/+64 |
|
|
* | 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 str.for... | Eric Smith | 2008-07-16 | 1 | -1/+12 |
|
|
* | Fix float.from_hex tests. It appears that Linux/ia64 doesn't like | Mark Dickinson | 2008-07-15 | 1 | -4/+4 |
|
|
* | 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 |
|
|
* | 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 |
|
|
* | Issue 2235: __hash__ is once again inherited by default, but inheritance can ... | Nick Coghlan | 2008-07-15 | 7 | -76/+97 |
|
|
* | 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 bin... | Eric Smith | 2008-07-15 | 2 | -0/+45 |
|
|
* | fix test_py3kwarns | Benjamin Peterson | 2008-07-14 | 38 | -57/+60 |
|
|
* | 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 wh... | Nick Coghlan | 2008-07-13 | 1 | -3/+33 |
|
|
* | Make test.test_support.catch_warnings more robust as discussed on python-dev.... | Nick Coghlan | 2008-07-13 | 4 | -63/+94 |
|
|
* | dummy_thread.acquire() would return None if no waitflag argument was given. It | Brett Cannon | 2008-07-13 | 2 | -6/+4 |
|
|
* | #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 |
|
|
* | #3317 in zipfile module, restore the previous names of global variables: | Amaury Forgeot d'Arc | 2008-07-11 | 1 | -55/+27 |
|
|
* | Added garbage collector overhead and optional default return value to | Robert Schuppenies | 2008-07-10 | 1 | -0/+23 |
|
|
* | 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 |
|
|
* | 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 bypassing... | Nick Coghlan | 2008-07-08 | 1 | -0/+1 |
|
|
* | Issue 3306. Better control for a lenght in findmax() function. | Facundo Batista | 2008-07-07 | 1 | -0/+4 |
|
|
* | - Issue #3094: httplib.HTTPSConnection Host: headers no longer include the | Gregory P. Smith | 2008-07-07 | 1 | -1/+1 |
|
|
* | Fixed bugs 760475, 953599, and 1519. | Josiah Carlson | 2008-07-07 | 3 | -6/+14 |
|
|
* | - Issue #3309: Fix bz2.BZFile itererator to release its internal lock | Gregory P. Smith | 2008-07-07 | 1 | -0/+11 |
|
|
* | Issue839496: SimpleHTTPServer should open all files in binary mode. | Amaury Forgeot d'Arc | 2008-07-06 | 1 | -5/+4 |
|
|
* | remove test_compact_freelists from test_sys | Benjamin Peterson | 2008-07-06 | 1 | -19/+0 |
|
|
* | - Issue #2113: Fix error in subprocess.Popen if the select system call is | Gregory P. Smith | 2008-07-06 | 1 | -1/+6 |
|
|
* | Issue #3239. Differentiate the ascii call from the curses one and | Facundo Batista | 2008-07-05 | 1 | -18/+19 |
|
|
* | Keep below 80 chars. | Georg Brandl | 2008-07-05 | 1 | -2/+2 |
|
|
* | make regrtest aware of the lib2to3 resource | Benjamin Peterson | 2008-07-05 | 1 | -1/+3 |
|
|
* | Disable lib2to3 by default, unless run explicitly. | Martin v. Löwis | 2008-07-05 | 1 | -1/+5 |
|
|
* | Merged revisions 64285-64735 via svnmerge from | Martin v. Löwis | 2008-07-05 | 2 | -4/+6 |
|
|
* | Issue 3188: accept float('infinity') as well as float('inf'). This | Mark Dickinson | 2008-07-05 | 1 | -1/+17 |
|
|