summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Collapse)AuthorAgeFilesLines
* #14538: HTMLParser can now parse correctly start tags that contain a bare /.Ezio Melotti2012-04-192-3/+13
|
* SETUP_WITH acts like SETUP_FINALLY for the purposes of setting f_lineno ↵Benjamin Peterson2012-04-181-0/+11
| | | | (closes #14612)
* mangle keyword-only argname when loading defaults (closes #14607)Benjamin Peterson2012-04-171-0/+6
|
* Issue #5113: Fix a test_posix failure on HP-UX, where non-root users canCharles-François Natali2012-04-171-2/+9
| | | | chown() to root under certain circumstances.
* Closes #14452: remove BOM insertion code.Vinay Sajip2012-04-161-2/+0
|
* Issue #14589: Update certificate chain for sha256.tbs-internet.com, fixing a ↵Antoine Pitrou2012-04-161-112/+111
| | | | test failure in test_ssl.
* Issue 13496: Fix bisect.bisect overflow bug for large collections.Mark Dickinson2012-04-151-0/+7
|
* #14399: zipfile now correctly handles comments added to empty zipfiles.R David Murray2012-04-122-11/+44
| | | | | | | | Patch by Serhiy Storchaka. This also moves the TypeError that results from trying to use a unicode comment from the 'close' step to the point at which the comment is added to the zipfile.
* 3.2 - Issue 10484 - Incorporate improvements to CGI module - Suggested by ↵Senthil Kumaran2012-04-112-51/+56
| | | | Glenn Linderman. Refactor code and tests
* Merge 3.2.3 release clone.Georg Brandl2012-04-112-2/+2
|\
| * Bump to 3.2.3 final.Georg Brandl2012-04-102-2/+2
| |
* | 3.2- fix the incorrect changes made for PATH_INFO value - Issue10484Senthil Kumaran2012-04-102-11/+6
| |
* | Fix the patch for issue #7978: select() raises select.error before 3.3, not ↵Antoine Pitrou2012-04-082-3/+3
| | | | | | | | OSError.
* | Fix flakiness in test_socketserverAntoine Pitrou2012-04-081-1/+4
| |
* | Issue #7978: socketserver now restarts the select() call when EINTR is returned.Antoine Pitrou2012-04-082-2/+47
| | | | | | | | | | This avoids crashing the server loop when a signal is received. Patch by Jerzy Kozera.
* | Make test_mailbox runnable via python -m unittest.R David Murray2012-04-081-17/+17
| |
* | #14492: fix some bugs in Tools/scripts/pdeps.py.R David Murray2012-04-061-0/+27
| | | | | | | | Initial patch by Popa Claudiu.
* | Issue #14496: Fix wrong name in idlelib/tabbedpages.py.Andrew Svetlov2012-04-051-2/+2
| | | | | | | | Patch by Popa Claudiu.
* | test_tools fix: don't import analyze_dxp if no _thread moduleR David Murray2012-04-051-0/+1
| |
* | #14490, #14491: add 'sundry'-style import tests for Tools/scripts.R David Murray2012-04-051-2/+43
| | | | | | | | | | | | This patch changes a few of the scripts to have __name__=='__main__' clauses so that they are importable without running. Also fixes the syntax errors revealed by the tests.
* | Closes #14495: fix typo.Georg Brandl2012-04-041-1/+1
| |
* | Issue #14482: Raise a ValueError, not a NameError, when trying to createAntoine Pitrou2012-04-032-0/+10
| | | | | | | | | | a multiprocessing Client or Listener with an AF_UNIX type address under Windows. Patch by Popa Claudiu.
* | remove uneeded lineBenjamin Peterson2012-04-021-1/+0
| |
* | prevent writing to stderr from messing up the exception state (closes #14474)Benjamin Peterson2012-04-021-0/+24
| |
* | Issue #14151: Raise a ValueError, not a NameError, when trying to createAntoine Pitrou2012-04-012-1/+22
| | | | | | | | | | a multiprocessing Client or Listener with an AF_PIPE type address under non-Windows platforms. Patch by Popa Claudiu.
* | Issue #13872: socket.detach() now marks the socket closed (as mirrored in ↵Antoine Pitrou2012-03-312-0/+12
| | | | | | | | | | | | the socket repr()). Patch by Matt Joiner.
* | Issue #14406: Fix a race condition when using ↵Antoine Pitrou2012-03-312-4/+22
| | | | | | | | | | | | `concurrent.futures.wait(return_when=ALL_COMPLETED)`. Patch by Matt Joiner.
* | #14434: make tutorial link in 'help' banner version-specificR David Murray2012-03-311-2/+2
| | | | | | | | | | | | Without this fix, both 2.7 and 3.x would always point to the "current" docs...which means that before this fix python 3.2 'help' pointed to the 2.7 tutorial.
* | update NEWS as Terry Reedy proposedAndrew Svetlov2012-03-311-2/+4
| |
* | Closes #14436: Convert msg + args to string before pickling.Vinay Sajip2012-03-291-5/+10
| |
* | Issue #14409: IDLE doesn't not execute commands from shell with default ↵Andrew Svetlov2012-03-292-1/+4
| | | | | | | | | | | | keybinding for <Return>. Patch by Roger Serwy.
* | Closes #14411: remove outdated comment in rlcompleter docstring.Georg Brandl2012-03-271-20/+16
| |
* | Issue #13902: Fix a random test_threading failure on FreeBSD 6 buildbots (dueCharles-François Natali2012-03-241-0/+1
| | | | | | | | to a known bug in pthread implementation on FreeBSD < 7).
* | Closes #14314: backported fix.Vinay Sajip2012-03-231-1/+2
| |
* | attempt to fix asyncore buildbot failureGiampaolo Rodola'2012-03-231-3/+7
| |
* | fix #10340: properly handle EINVAL on OSX and also avoid to call ↵Giampaolo Rodola'2012-03-222-8/+25
| | | | | | | | handle_connect() in case of a disconnetected socket which is not meant to connect.
* | check by equality for __future__ not identity (closes #14378)Benjamin Peterson2012-03-221-0/+6
| |
* | #12757: Make doctest skipping in -OO mode work with unittest/regrtest -vR David Murray2012-03-211-3/+7
| |
* | #3573: idle now doesn't hungs if launched as: idle -e <directory>Andrew Svetlov2012-03-212-2/+11
| | | | | | | | Patch by Guilherme Polo.
* | Fix issue #13694: asynchronous connect in asyncore.dispatcher does not set addr.Giampaolo Rodola'2012-03-201-0/+1
| |
* | Merge 3.2.3rc2 from release clone.Georg Brandl2012-03-182-2/+2
|\ \ | |/
| * Bump to 3.2.3rc2.v3.2.3rc2Georg Brandl2012-03-182-2/+2
| |
| * Fix long-standing bugs with MANIFEST.in parsing on Windows (#6884).Éric Araujo2012-02-253-48/+131
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | These regex changes fix a number of issues for distutils on Windows: - #6884: impossible to include a file starting with 'build' - #9691 and #14004: sdist includes too many files - #13193: test_filelist failures This commit replaces the incorrect changes done in 0a94e2f807c7 and 90b30d62caf2 to fix #13193; we were too eager to fix the test failures and I did not study the code enough before greenlighting patches. This time we have unit tests from the problems reported by users to be sure we have the right fix. Thanks to Nadeem Vawda for his help.
* | #14333: fix test_queue so it can be run via standard unittest test discovery.R David Murray2012-03-171-4/+4
| |
* | #11686: add missing entries to email __all__ lists.R David Murray2012-03-175-11/+9
| | | | | | | | Original patch by Steffen Daode Nurpmeso
* | check to make sure the attribute is a string (#14334)Benjamin Peterson2012-03-161-0/+3
| |
* | closes issue10484 - Fix the http.server's cgi PATH_INFO handling problemSenthil Kumaran2012-03-162-1/+9
| |
* | Explain the use of charset parameter with Content-Type header. Issue11082Senthil Kumaran2012-03-161-2/+3
| |
* | closes Issue #11199: Fix the with urllib which hangs on particular ftp urls.Senthil Kumaran2012-03-151-1/+1
| |
* | #14062: fix BytesParser handling of linesep for Header objectsR David Murray2012-03-142-2/+25
| | | | | | | | This also affected smtplib.SMTP.send_message, which calls BytesParser.