| Commit message (Expand) | Author | Age | Files | Lines |
* | disable some failing tests in test_locale due to a bug in locale.py. | Antoine Pitrou | 2008-07-26 | 1 | -15/+14 |
|
|
* | Fix more buildbot failures on test_locale. | Antoine Pitrou | 2008-07-26 | 1 | -5/+10 |
|
|
* | try to fix most buildbot failures on test_locale + add a debug output for the... | Antoine Pitrou | 2008-07-26 | 1 | -47/+69 |
|
|
* | convert test_locale to unittest, and add a mechanism to override localconv() ... | Antoine Pitrou | 2008-07-25 | 2 | -119/+278 |
|
|
* | #3394: zipfile.writestr doesn't set external attributes, so files are extract... | Antoine Pitrou | 2008-07-25 | 2 | -0/+14 |
|
|
* | Issue 1592: Better error reporting for operations on closed shelves. | Raymond Hettinger | 2008-07-25 | 2 | -1/+26 |
|
|
* | #2242: utf7 decoding crashes on bogus input on some Windows/MSVC versions | Antoine Pitrou | 2008-07-25 | 1 | -0/+3 |
|
|
* | use isinstance | Benjamin Peterson | 2008-07-23 | 1 | -1/+1 |
|
|
* | bsddb module updated to version 4.7.2devel9. | Jesus Cea | 2008-07-23 | 14 | -139/+492 |
|
|
* | remove unneeded import | Benjamin Peterson | 2008-07-22 | 1 | -1/+0 |
|
|
* | don't use assert statement | Benjamin Peterson | 2008-07-21 | 1 | -1/+1 |
|
|
* | Issue2378: pdb would delete free variables when stepping into a class statement. | Amaury Forgeot d'Arc | 2008-07-21 | 1 | -0/+18 |
|
|
* | Issue 3396. Fixed the autocompletion of 'int.', and worked | Facundo Batista | 2008-07-21 | 1 | -6/+11 |
|
|
* | Save the whole of sys.modules instead of using an import tracker. | Georg Brandl | 2008-07-20 | 1 | -21/+4 |
|
|
* | Fix misspeeld method name (negative) | Neal Norwitz | 2008-07-20 | 1 | -1/+1 |
|
|
* | Remove exception indexing in asyncore. | Georg Brandl | 2008-07-20 | 1 | -9/+9 |
|
|
* | Clean-up itertools docs and recipes. | Raymond Hettinger | 2008-07-19 | 1 | -55/+17 |
|
|
* | Fix compress() recipe in docs to use itertools. | Raymond Hettinger | 2008-07-19 | 1 | -3/+3 |
|
|
* | Merged revisions 65137 via svnmerge from | Benjamin Peterson | 2008-07-19 | 2 | -1/+12 |
|
|
* | #3319: don't raise ZeroDivisionError if number of rounds is so | Georg Brandl | 2008-07-19 | 1 | -1/+5 |
|
|
* | #3303: fix crash with invalid Py_DECREF in strcoll(). | Georg Brandl | 2008-07-19 | 1 | -1/+10 |
|
|
* | Add recipe to the itertools docs. | Raymond Hettinger | 2008-07-19 | 1 | -0/+18 |
|
|
* | Improve accuracy of gamma test function | Raymond Hettinger | 2008-07-19 | 1 | -5/+3 |
|
|
* | Fix issue 3411: default float format spec fails on negative numbers. | Eric Smith | 2008-07-19 | 1 | -0/+6 |
|
|
* | Deprecate the sunaudio module for removal in Python 3.0. The sunau module can... | Brett Cannon | 2008-07-18 | 3 | -11/+18 |
|
|
* | #3390: replace a remaining has_key(). | Georg Brandl | 2008-07-18 | 1 | -1/+1 |
|
|
* | Replace all map(None, a) with list(a). | Georg Brandl | 2008-07-18 | 4 | -6/+6 |
|
|
* | now that test_lib2to3 actually works and isn't extremely slow, we don't need ... | Benjamin Peterson | 2008-07-18 | 2 | -7/+3 |
|
|
* | backport test_fileio | Benjamin Peterson | 2008-07-18 | 1 | -0/+240 |
|
|
* | Correct attribute name. | Georg Brandl | 2008-07-18 | 1 | -1/+1 |
|
|
* | Remove duplicate entry in __all__. | Georg Brandl | 2008-07-18 | 1 | -1/+1 |
|
|
* | Issue #3389: Allow resolving dotted names for handlers in logging configurati... | Vinay Sajip | 2008-07-18 | 1 | -2/+7 |
|
|
* | Issue #3389: Allow resolving dotted names for handlers in logging configurati... | Vinay Sajip | 2008-07-18 | 1 | -1/+4 |
|
|
* | Bumping to 2.6b2v2.6b2 | Barry Warsaw | 2008-07-18 | 2 | -2/+2 |
|
|
* | Fix issue 3395, update _debugInfo to be _debug_info | Jesse Noller | 2008-07-17 | 1 | -1/+1 |
|
|
* | 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 |
|
|
* | 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 |
|
|
* | #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 |
|
|
* | 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 |
|
|