| Commit message (Expand) | Author | Age | Files | Lines |
* | Issue #7079: Fix a possible crash when closing a file object while using | Antoine Pitrou | 2010-05-17 | 1 | -1/+11 |
|
|
* | Issue #1285086: Speed up urllib.quote and urllib.unquote for simple cases. | Florent Xicluna | 2010-05-17 | 1 | -17/+26 |
|
|
* | upgraded distutils docs w.r.t. the manifest regeneration | Tarek Ziadé | 2010-05-17 | 1 | -1/+2 |
|
|
* | Slight style cleanup. | Florent Xicluna | 2010-05-17 | 1 | -8/+6 |
|
|
* | Fixed #8688: Distutils now recalculates MANIFEST everytime. | Tarek Ziadé | 2010-05-17 | 2 | -57/+66 |
|
|
* | Use with open() as fo: ... instead of try: fo = open(...) finally: fo.close() | Victor Stinner | 2010-05-16 | 1 | -6/+4 |
|
|
* | use TestCase skip method | Benjamin Peterson | 2010-05-15 | 1 | -4/+4 |
|
|
* | If the timeout is exceeded, count the tests as skipped instead of just | Stefan Krah | 2010-05-15 | 1 | -6/+4 |
|
|
* | Fix regression introduced by r81154 (Issue #5099, subprocess destructor) | Victor Stinner | 2010-05-14 | 1 | -3/+3 |
|
|
* | subprocess.Popen.__del__ referenced global objects, which is a no-no thanks to | Brett Cannon | 2010-05-14 | 1 | -17/+34 |
|
|
* | test_site was failing under darwin for non-framework builds because a test was | Brett Cannon | 2010-05-13 | 1 | -1/+2 |
|
|
* | Revert changeset r81150 which helped diagnose issue #8423 on some OS X buildbot. | Florent Xicluna | 2010-05-13 | 1 | -17/+4 |
|
|
* | Improve test feedback to troubleshoot issue #8423 on OS X. | Florent Xicluna | 2010-05-13 | 1 | -4/+17 |
|
|
* | Better test skipping, with message in the log. | Florent Xicluna | 2010-05-13 | 1 | -8/+14 |
|
|
* | Revert the additional OS X information (r81140). Keep the endianness informa... | Florent Xicluna | 2010-05-13 | 1 | -5/+1 |
|
|
* | Add sensible information about the OS X platform to diagnose issue #8423: | Florent Xicluna | 2010-05-13 | 1 | -1/+6 |
|
|
* | Fix verb tense in skip message. | Victor Stinner | 2010-05-13 | 1 | -1/+1 |
|
|
* | Issue #8422, test_genericpath: skip the creation of a directory with an invalid | Victor Stinner | 2010-05-13 | 1 | -0/+4 |
|
|
* | Fix Issue8657 - adding git and git+ssh as know schemes. | Senthil Kumaran | 2010-05-13 | 2 | -2/+7 |
|
|
* | Fix unused variable in test_factorial. | Mark Dickinson | 2010-05-12 | 1 | -1/+1 |
|
|
* | Removed the assertion that dispatcher.connected attribute must be False after... | Giampaolo Rodolà | 2010-05-12 | 1 | -6/+2 |
|
|
* | Issue #8681: Make the zlib module's error messages more informative when | Antoine Pitrou | 2010-05-11 | 1 | -0/+7 |
|
|
* | Issue #8672: Add a zlib test ensuring that an incomplete stream can be | Antoine Pitrou | 2010-05-11 | 1 | -0/+13 |
|
|
* | Improving help message for python -m unittest. Issue 8303. | Michael Foord | 2010-05-10 | 2 | -6/+7 |
|
|
* | Issue #8490: adds a more solid test suite for asyncore | Giampaolo Rodolà | 2010-05-10 | 1 | -1/+275 |
|
|
* | Adding a test for unittest.BaseTestSuite. | Michael Foord | 2010-05-09 | 1 | -0/+45 |
|
|
* | Issue #8644: Improve accuracy of timedelta.total_seconds method. | Mark Dickinson | 2010-05-09 | 1 | -1/+8 |
|
|
* | Revert r81012. buildbot problems and its questionable of me to even | Gregory P. Smith | 2010-05-09 | 2 | -236/+5 |
|
|
* | Fixes [issue7245] Better Ctrl-C support in pdb. | Gregory P. Smith | 2010-05-08 | 2 | -5/+236 |
|
|
* | Skip signal handler re-installation if it is not necessary. Issue 8354. | Jean-Paul Calderone | 2010-05-08 | 1 | -18/+75 |
|
|
* | bump version to 2.7 beta 2v2.7b2 | Benjamin Peterson | 2010-05-08 | 2 | -2/+2 |
|
|
* | unittest: issue 8301. Adding functions to test suites no longer crashes. | Michael Foord | 2010-05-08 | 2 | -1/+15 |
|
|
* | update pydoc-topics | Benjamin Peterson | 2010-05-08 | 1 | -4/+4 |
|
|
* | run and fix enumerate start test cases #8636 | Benjamin Peterson | 2010-05-08 | 1 | -9/+14 |
|
|
* | Updating documentation and adding docstrings to unittest.TestCase.assertRegex... | Michael Foord | 2010-05-08 | 1 | -0/+2 |
|
|
* | add underscore | Benjamin Peterson | 2010-05-08 | 1 | -1/+1 |
|
|
* | r80967 introduced a new scheme | Benjamin Peterson | 2010-05-08 | 1 | -2/+2 |
|
|
* | Revert r80963 - it broke compilation everywhere | Antoine Pitrou | 2010-05-08 | 1 | -20/+1 |
|
|
* | Issue 7780. Adding a test for unittest test discovery from a dotted path. | Michael Foord | 2010-05-08 | 1 | -0/+17 |
|
|
* | Issue #8084: ensure that the --user directory | Ronald Oussoren | 2010-05-08 | 2 | -7/+31 |
|
|
* | Fix for issue #7724: make it possible to build using | Ronald Oussoren | 2010-05-08 | 1 | -1/+20 |
|
|
* | Fixing the errors trigerred in test_urllib2net. Related to issue8656. | Senthil Kumaran | 2010-05-08 | 1 | -5/+8 |
|
|
* | Fix Issue8656 - urllib2 mangles file://-scheme URLs | Senthil Kumaran | 2010-05-08 | 2 | -2/+3 |
|
|
* | Issue 8547 - detecting and reporting that modules have been imported from the... | Michael Foord | 2010-05-07 | 2 | -3/+58 |
|
|
* | revert r80932; it breaks windows | Benjamin Peterson | 2010-05-07 | 2 | -53/+1 |
|
|
* | Merged revisions 79911,79916-79917,80018,80418,80572-80573,80635-80639,80668,... | Benjamin Peterson | 2010-05-07 | 15 | -91/+167 |
|
|
* | Issue 8547 - detecting and reporting that modules have been imported from the... | Michael Foord | 2010-05-07 | 2 | -1/+53 |
|
|
* | Issue #8571: Fix an internal error when compressing or decompressing a | Antoine Pitrou | 2010-05-07 | 1 | -3/+59 |
|
|
* | Adding tests for unittest command line handling of buffer, catchbreak and fai... | Michael Foord | 2010-05-07 | 2 | -0/+206 |
|
|
* | Adding a test for unittest test discovery with dotted path name. | Michael Foord | 2010-05-07 | 2 | -4/+21 |
|
|