summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Expand)AuthorAgeFilesLines
...
* Issue 8143: sync unquote in urlparse with urllib; add comment about doing so.R. David Murray2010-05-252-10/+18
* Fix #2810 - handle the case where some registry calls returnBrian Curtin2010-05-251-0/+53
* Issue #6662: Fix parsing of malformatted charref (&#bad;)Victor Stinner2010-05-242-0/+10
* #8016: add the CP858 codec (approved by Benjamin). (Also add CP720 to the te...Georg Brandl2010-05-244-4/+709
* Fix default value for version help. Approved by Benjamin on python-dev: http:...Steven Bethard2010-05-242-1/+20
* Merged revisions 80937,81478 via svnmerge fromBenjamin Peterson2010-05-222-2/+4
* Fix my last commit (r81471) about codecsVictor Stinner2010-05-222-6/+6
* Issue #6268: More bugfixes about BOM, UTF-16 and UTF-32Victor Stinner2010-05-224-20/+75
* Underscore the name of an internal utility function.Georg Brandl2010-05-221-3/+3
* Issue #3924: Ignore cookies with invalid "version" field in cookielib.Georg Brandl2010-05-222-6/+30
* Issue #6268: Fix seek() method of codecs.open(), don't read the BOM twiceVictor Stinner2010-05-222-0/+25
* Issue #5640: Fix Shift-JIS incremental encoder for error handlers differentVictor Stinner2010-05-211-0/+4
* simplify and modernize updatecache()Benjamin Peterson2010-05-211-12/+10
* remove debugging rubishBenjamin Peterson2010-05-211-3/+0
* ensure the last line has a trailing newline #8782Benjamin Peterson2010-05-212-0/+14
* fix nameBenjamin Peterson2010-05-211-1/+1
* use addCleanupBenjamin Peterson2010-05-211-30/+27
* return NotImplemented from Mapping when comparing to a non-mapping #8729Benjamin Peterson2010-05-212-3/+51
* Turned out that if you used explicit relative import syntaxBrett Cannon2010-05-201-0/+12
* libpython.py: fix support of non-BMP unicode charactersVictor Stinner2010-05-201-8/+2
* #8759: Fixed user paths in sysconfig for posix and os2 schemesTarek Ziadé2010-05-192-9/+18
* Fix typos in docstrings.Stefan Krah2010-05-191-2/+2
* Fix issue #8573 (asyncore._strerror bug): fixed os.strerror typo; included Na...Giampaolo Rodolà2010-05-182-2/+11
* Issue #7079: Fix a possible crash when closing a file object while usingAntoine Pitrou2010-05-171-1/+11
* Issue #1285086: Speed up urllib.quote and urllib.unquote for simple cases.Florent Xicluna2010-05-171-17/+26
* upgraded distutils docs w.r.t. the manifest regenerationTarek Ziadé2010-05-171-1/+2
* Slight style cleanup.Florent Xicluna2010-05-171-8/+6
* Fixed #8688: Distutils now recalculates MANIFEST everytime.Tarek Ziadé2010-05-172-57/+66
* Use with open() as fo: ... instead of try: fo = open(...) finally: fo.close()Victor Stinner2010-05-161-6/+4
* use TestCase skip methodBenjamin Peterson2010-05-151-4/+4
* If the timeout is exceeded, count the tests as skipped instead of justStefan Krah2010-05-151-6/+4
* Fix regression introduced by r81154 (Issue #5099, subprocess destructor)Victor Stinner2010-05-141-3/+3
* subprocess.Popen.__del__ referenced global objects, which is a no-no thanks toBrett Cannon2010-05-141-17/+34
* test_site was failing under darwin for non-framework builds because a test wasBrett Cannon2010-05-131-1/+2
* Revert changeset r81150 which helped diagnose issue #8423 on some OS X buildbot.Florent Xicluna2010-05-131-17/+4
* Improve test feedback to troubleshoot issue #8423 on OS X.Florent Xicluna2010-05-131-4/+17
* Better test skipping, with message in the log.Florent Xicluna2010-05-131-8/+14
* Revert the additional OS X information (r81140). Keep the endianness informa...Florent Xicluna2010-05-131-5/+1
* Add sensible information about the OS X platform to diagnose issue #8423:Florent Xicluna2010-05-131-1/+6
* Fix verb tense in skip message.Victor Stinner2010-05-131-1/+1
* Issue #8422, test_genericpath: skip the creation of a directory with an invalidVictor Stinner2010-05-131-0/+4
* Fix Issue8657 - adding git and git+ssh as know schemes.Senthil Kumaran2010-05-132-2/+7
* Fix unused variable in test_factorial.Mark Dickinson2010-05-121-1/+1
* Removed the assertion that dispatcher.connected attribute must be False after...Giampaolo Rodolà2010-05-121-6/+2
* Issue #8681: Make the zlib module's error messages more informative whenAntoine Pitrou2010-05-111-0/+7
* Issue #8672: Add a zlib test ensuring that an incomplete stream can beAntoine Pitrou2010-05-111-0/+13
* Improving help message for python -m unittest. Issue 8303.Michael Foord2010-05-102-6/+7
* Issue #8490: adds a more solid test suite for asyncoreGiampaolo Rodolà2010-05-101-1/+275
* Adding a test for unittest.BaseTestSuite.Michael Foord2010-05-091-0/+45
* Issue #8644: Improve accuracy of timedelta.total_seconds method.Mark Dickinson2010-05-091-1/+8