summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
| * #13530: port to 2.7 branch (document what os.lseek returns).Georg Brandl2014-03-112-2/+3
| |
| * Closes #20090: update Doc/README and the error message in sphinx-build.py to ↵Georg Brandl2014-03-102-35/+17
| | | | | | | | | | | | make it clear that any Python 3.x is not usable with the checked out Sphinx.
| * note that future_builtin's map is not quite like python 3's (closes #19363)Benjamin Peterson2014-03-091-0/+5
| | | | | | | | Patch by Gareth Rees.
| * mergeGeorg Brandl2014-03-091-1/+0
| |\
| | * Closes #20735: remove erroneous deprecated marker from stringprep docsGeorg Brandl2014-02-241-1/+0
| | |
| * | Improve the default seeding in random module to use 32 bytes of entropy when ↵Raymond Hettinger2014-03-082-1/+5
| | | | | | | | | | | | available.
| * | Issue #20283: RE pattern methods now accept the string keyword parametersSerhiy Storchaka2014-03-063-16/+98
| | | | | | | | | | | | | | | as documented. The pattern and source keyword parameters are left as deprecated aliases.
| * | Issue #15618: Make turtle.py itself work when run from a module withTerry Jan Reedy2014-03-063-10/+14
| | | | | | | | | | | | | | | | | | | | | | | | from __future__ import unicode_literals. Initial patch by Juancarlo Añez. The demos at the end of turtle.py appear to be the only test, so I changed some of the strings to unicode with a u prefix. If os.path.isfile or the Tk image function have problems with Unicode input, that would be different issue.
| * | Correct and improve comments in test_fileinput (closes #20501).Serhiy Storchaka2014-03-031-3/+3
| | | | | | | | | | | | Thanks Vajrasky Kok and Zachary Ware.
| * | add Chris AngelicoBenjamin Peterson2014-03-021-0/+1
| | |
| * | fix test_posix.test_initgroups to work without supplemental groups (closes ↵Benjamin Peterson2014-03-021-1/+1
| | | | | | | | | | | | #20249)
| * | Issue #20567: Delete class attribute gui widgets in idle tests.Terry Jan Reedy2014-02-276-3/+14
| | | | | | | | | | | | Code patch by Serhiy Storchaka
| * | Issue #20501: fileinput module no longer reads whole file into memory when usingSerhiy Storchaka2014-02-263-3/+48
| | | | | | | | | | | | fileinput.hook_encoded.
| * | #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
|/