summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
| * | #20628: wrap lines to < 80.R David Murray2014-02-241-29/+30
| | |
| * | #20628: make it clear that DictReader/Writer *fieldnames* is a Sequence.R David Murray2014-02-241-2/+8
| |/ | | | | | | Patch by Sean Rodman.
| * Issue #9974: When untokenizing, use row info to insert backslash+newline.Terry Jan Reedy2014-02-242-1/+21
| | | | | | | | Original patches by A. Kuchling and G. Rees (#12691).
| * Restore title styleAntoine Pitrou2014-02-231-0/+1
| |
| * Issue #20743: Fix a reference leak in test_tcl.Antoine Pitrou2014-02-232-0/+3
| |
| * use sphinx from its own virtualenv (closes #20693)Benjamin Peterson2014-02-221-1/+2
| |
| * update logo url (#20695)Benjamin Peterson2014-02-201-1/+1
| |
| * Issue #6815: os.path.expandvars() now supports non-ASCII Unicode environmentSerhiy Storchaka2014-02-196-21/+145
| | | | | | | | variables names and values.
| * Issue #20510: Confirm that the code attribute of the SystemExitZachary Ware2014-02-191-0/+4
| | | | | | | | | | | | exception raised by sys.exit is None when no code is given. As suggested by Serhiy Storchaka.
| * Fixed grid_columnconfigure() and grid_rowconfigure() methods ofSerhiy Storchaka2014-02-192-11/+21
| | | | | | | | Tkinter widgets to work in wantobjects=True mode.
| * Issue #20510: Rewrote test_exit in test_sys to match existing commentsZachary Ware2014-02-182-55/+35
| | | | | | | | and to modernize. Initial patch by Gareth Rees.
| * whitespaceTerry Jan Reedy2014-02-181-1/+1
| |
| * Issue #8478: Untokenizer.compat now processes first token from iterator input.Terry Jan Reedy2014-02-183-10/+19
| | | | | | | | Patch based on lines from Georg Brandl, Eric Snow, and Gareth Rees.
| * Untokenize: An logically incorrect assert tested user input validity.Terry Jan Reedy2014-02-172-2/+18
| | | | | | | | | | | | Replace it with correct logic that raises ValueError for bad input. Issues #8478 and #12691 reported the incorrect logic. Add an Untokenize test case and an initial test method.
| * backout 369bf9fbaeffBenjamin Peterson2014-02-162-8/+7
| |
| * remove tests for #19081Benjamin Peterson2014-02-161-84/+21
| |
| * finish backing out #19081Benjamin Peterson2014-02-161-241/+53
| |
| * backout #19081 to fix #20621Benjamin Peterson2014-02-163-217/+88
| |
| * add missing test assertion (closes #20080)Benjamin Peterson2014-02-151-0/+1
| | | | | | | | Patch by Vajrasky Kok.
| * give non-iterable TypeError a message (closes #20507)Benjamin Peterson2014-02-151-1/+1
| |
| * #19890: fix typo in multiprocessing docs. Patch by Mike Short.Ezio Melotti2014-02-151-1/+1
| |
| * #20634: fix typo in IDLE README noticed by Saimadhav Heblikar.Ezio Melotti2014-02-151-1/+1
| |
| * fix links to builtin repr function (closes #20573)Benjamin Peterson2014-02-141-4/+5
| |
| * Issue #20605: Make test_socket getaddrinfo OS X segfault test more robust.Ned Deily2014-02-142-2/+10
| |
| * #19680: add back documentation for print and exec in the interactive help.Ezio Melotti2014-02-142-7/+9
| |
| * Issue #17671: Fixed a crash when use non-initialized io.BufferedRWPair.Serhiy Storchaka2014-02-123-2/+48
| | | | | | | | Based on patch by Stephen Tu.
| * Issue #19255: Clear error after failed PyDict_SetItem() on shutdown.Serhiy Storchaka2014-02-121-2/+4
| | | | | | | | This silences a Coverity complain.
| * Add references for Xcode and the Python Developer's GuideNed Deily2014-02-121-0/+7
| | | | | | | | to the internal Mac/README file.
| * avoid name clash with posix_close (closes #20594)Benjamin Peterson2014-02-112-2/+8
| |
| * Issue #20558: Improved implementation of error handling.Vinay Sajip2014-02-111-27/+30
| |
| * Issue #19856: shutil.move() failed to move a directory to other directorySerhiy Storchaka2014-02-113-1/+14
| | | | | | | | on Windows if source name ends with os.altsep.
| * Merge headsSerhiy Storchaka2014-02-101-2/+3
| |\
| | * #19906: clarify note in urllib docs.Ezio Melotti2014-02-101-2/+3
| | |
| * | issue12085: Use more Pythonic way to check _child_created.Serhiy Storchaka2014-02-101-4/+5
| |/ | | | | | | _active shouldn't be cached, it set to None on shutdown.
| * Issue #20437: Fixed 43 potential bugs when deleting objects references.Serhiy Storchaka2014-02-0918-82/+45
| |
| * #14983: always add a line end after a MIME boundary marker.R David Murray2014-02-085-12/+26
| | | | | | | | | | | | | | | | | | This is more RFC compliant (see issue) and fixes a problem with signature verifiers rejecting the part when signed. There is some amount of backward compatibility concern here since it changes the output, but the RFC issue coupled with fixing the problem with signature verifiers seems worth the small risk of breaking code that depends on the current incorrect output.
* | Issue #21810: Backport mmap-based arena allocation failure check.Charles-François Natali2014-06-191-4/+9
|/
* Issue #20406: Use Python application icons for Idle window title bars.Terry Jan Reedy2014-02-089-1/+16
| | | | Patch mostly by Serhiy Storchaka.
* Issue #20549: Use specific asserts in mailbox, smtplib and poplib tests.Serhiy Storchaka2014-02-083-38/+38
|
* Issue #20555: Use specific asserts in urllib, httplib, ftplib, cgi, wsgiref ↵Serhiy Storchaka2014-02-088-28/+29
| | | | tests.
* Issue #20546: Use specific asserts in int tests.Serhiy Storchaka2014-02-081-2/+2
|
* #20013: don't raise socket error when selected mailbox deleted.R David Murray2014-02-072-0/+9
| | | | | | | | I'm checking this in without a test because not much of this code is tested and I don't have time to work up the necessary extensions to the existing test framework. The patch itself was tested by the person who reported the bug.
* Issue #20532: Tests which use _testcapi now are marked as CPython only.Serhiy Storchaka2014-02-0720-103/+204
|
* Issue #20520: Fixed readline test in test_codecs.Serhiy Storchaka2014-02-061-6/+15
|
* Issue #20374: delete spurious empty lineNed Deily2014-02-061-1/+0
|
* Issue #20374: Avoid compiler warnings when compiling readline with libedit.Ned Deily2014-02-061-0/+9
|
* Issue #19920: Added tests for TarFile.list(). Based on patch by Vajrasky Kok.Serhiy Storchaka2014-02-052-0/+79
|
* Issue #20498: Fixed io.StringIO tests for newline='\n'. Added new tests.Serhiy Storchaka2014-02-051-1/+36
|
* Issue #20509: Added cross-reference in documentation.Vinay Sajip2014-02-041-2/+3
|
* mmap obmalloc arenas so that they may be immediately returned to the system ↵Benjamin Peterson2014-02-045-15/+46
| | | | when unused (closes #20494)