Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
| * | #13530: port to 2.7 branch (document what os.lseek returns). | Georg Brandl | 2014-03-11 | 2 | -2/+3 | |
| | | ||||||
| * | Closes #20090: update Doc/README and the error message in sphinx-build.py to ↵ | Georg Brandl | 2014-03-10 | 2 | -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 Peterson | 2014-03-09 | 1 | -0/+5 | |
| | | | | | | | | Patch by Gareth Rees. | |||||
| * | merge | Georg Brandl | 2014-03-09 | 1 | -1/+0 | |
| |\ | ||||||
| | * | Closes #20735: remove erroneous deprecated marker from stringprep docs | Georg Brandl | 2014-02-24 | 1 | -1/+0 | |
| | | | ||||||
| * | | Improve the default seeding in random module to use 32 bytes of entropy when ↵ | Raymond Hettinger | 2014-03-08 | 2 | -1/+5 | |
| | | | | | | | | | | | | available. | |||||
| * | | Issue #20283: RE pattern methods now accept the string keyword parameters | Serhiy Storchaka | 2014-03-06 | 3 | -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 with | Terry Jan Reedy | 2014-03-06 | 3 | -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 Storchaka | 2014-03-03 | 1 | -3/+3 | |
| | | | | | | | | | | | | Thanks Vajrasky Kok and Zachary Ware. | |||||
| * | | add Chris Angelico | Benjamin Peterson | 2014-03-02 | 1 | -0/+1 | |
| | | | ||||||
| * | | fix test_posix.test_initgroups to work without supplemental groups (closes ↵ | Benjamin Peterson | 2014-03-02 | 1 | -1/+1 | |
| | | | | | | | | | | | | #20249) | |||||
| * | | Issue #20567: Delete class attribute gui widgets in idle tests. | Terry Jan Reedy | 2014-02-27 | 6 | -3/+14 | |
| | | | | | | | | | | | | Code patch by Serhiy Storchaka | |||||
| * | | Issue #20501: fileinput module no longer reads whole file into memory when using | Serhiy Storchaka | 2014-02-26 | 3 | -3/+48 | |
| | | | | | | | | | | | | fileinput.hook_encoded. | |||||
| * | | #20628: wrap lines to < 80. | R David Murray | 2014-02-24 | 1 | -29/+30 | |
| | | | ||||||
| * | | #20628: make it clear that DictReader/Writer *fieldnames* is a Sequence. | R David Murray | 2014-02-24 | 1 | -2/+8 | |
| |/ | | | | | | | Patch by Sean Rodman. | |||||
| * | Issue #9974: When untokenizing, use row info to insert backslash+newline. | Terry Jan Reedy | 2014-02-24 | 2 | -1/+21 | |
| | | | | | | | | Original patches by A. Kuchling and G. Rees (#12691). | |||||
| * | Restore title style | Antoine Pitrou | 2014-02-23 | 1 | -0/+1 | |
| | | ||||||
| * | Issue #20743: Fix a reference leak in test_tcl. | Antoine Pitrou | 2014-02-23 | 2 | -0/+3 | |
| | | ||||||
| * | use sphinx from its own virtualenv (closes #20693) | Benjamin Peterson | 2014-02-22 | 1 | -1/+2 | |
| | | ||||||
| * | update logo url (#20695) | Benjamin Peterson | 2014-02-20 | 1 | -1/+1 | |
| | | ||||||
| * | Issue #6815: os.path.expandvars() now supports non-ASCII Unicode environment | Serhiy Storchaka | 2014-02-19 | 6 | -21/+145 | |
| | | | | | | | | variables names and values. | |||||
| * | Issue #20510: Confirm that the code attribute of the SystemExit | Zachary Ware | 2014-02-19 | 1 | -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 of | Serhiy Storchaka | 2014-02-19 | 2 | -11/+21 | |
| | | | | | | | | Tkinter widgets to work in wantobjects=True mode. | |||||
| * | Issue #20510: Rewrote test_exit in test_sys to match existing comments | Zachary Ware | 2014-02-18 | 2 | -55/+35 | |
| | | | | | | | | and to modernize. Initial patch by Gareth Rees. | |||||
| * | whitespace | Terry Jan Reedy | 2014-02-18 | 1 | -1/+1 | |
| | | ||||||
| * | Issue #8478: Untokenizer.compat now processes first token from iterator input. | Terry Jan Reedy | 2014-02-18 | 3 | -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 Reedy | 2014-02-17 | 2 | -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 369bf9fbaeff | Benjamin Peterson | 2014-02-16 | 2 | -8/+7 | |
| | | ||||||
| * | remove tests for #19081 | Benjamin Peterson | 2014-02-16 | 1 | -84/+21 | |
| | | ||||||
| * | finish backing out #19081 | Benjamin Peterson | 2014-02-16 | 1 | -241/+53 | |
| | | ||||||
| * | backout #19081 to fix #20621 | Benjamin Peterson | 2014-02-16 | 3 | -217/+88 | |
| | | ||||||
| * | add missing test assertion (closes #20080) | Benjamin Peterson | 2014-02-15 | 1 | -0/+1 | |
| | | | | | | | | Patch by Vajrasky Kok. | |||||
| * | give non-iterable TypeError a message (closes #20507) | Benjamin Peterson | 2014-02-15 | 1 | -1/+1 | |
| | | ||||||
| * | #19890: fix typo in multiprocessing docs. Patch by Mike Short. | Ezio Melotti | 2014-02-15 | 1 | -1/+1 | |
| | | ||||||
| * | #20634: fix typo in IDLE README noticed by Saimadhav Heblikar. | Ezio Melotti | 2014-02-15 | 1 | -1/+1 | |
| | | ||||||
| * | fix links to builtin repr function (closes #20573) | Benjamin Peterson | 2014-02-14 | 1 | -4/+5 | |
| | | ||||||
| * | Issue #20605: Make test_socket getaddrinfo OS X segfault test more robust. | Ned Deily | 2014-02-14 | 2 | -2/+10 | |
| | | ||||||
| * | #19680: add back documentation for print and exec in the interactive help. | Ezio Melotti | 2014-02-14 | 2 | -7/+9 | |
| | | ||||||
| * | Issue #17671: Fixed a crash when use non-initialized io.BufferedRWPair. | Serhiy Storchaka | 2014-02-12 | 3 | -2/+48 | |
| | | | | | | | | Based on patch by Stephen Tu. | |||||
| * | Issue #19255: Clear error after failed PyDict_SetItem() on shutdown. | Serhiy Storchaka | 2014-02-12 | 1 | -2/+4 | |
| | | | | | | | | This silences a Coverity complain. | |||||
| * | Add references for Xcode and the Python Developer's Guide | Ned Deily | 2014-02-12 | 1 | -0/+7 | |
| | | | | | | | | to the internal Mac/README file. | |||||
| * | avoid name clash with posix_close (closes #20594) | Benjamin Peterson | 2014-02-11 | 2 | -2/+8 | |
| | | ||||||
| * | Issue #20558: Improved implementation of error handling. | Vinay Sajip | 2014-02-11 | 1 | -27/+30 | |
| | | ||||||
| * | Issue #19856: shutil.move() failed to move a directory to other directory | Serhiy Storchaka | 2014-02-11 | 3 | -1/+14 | |
| | | | | | | | | on Windows if source name ends with os.altsep. | |||||
| * | Merge heads | Serhiy Storchaka | 2014-02-10 | 1 | -2/+3 | |
| |\ | ||||||
| | * | #19906: clarify note in urllib docs. | Ezio Melotti | 2014-02-10 | 1 | -2/+3 | |
| | | | ||||||
| * | | issue12085: Use more Pythonic way to check _child_created. | Serhiy Storchaka | 2014-02-10 | 1 | -4/+5 | |
| |/ | | | | | | | _active shouldn't be cached, it set to None on shutdown. | |||||
| * | Issue #20437: Fixed 43 potential bugs when deleting objects references. | Serhiy Storchaka | 2014-02-09 | 18 | -82/+45 | |
| | | ||||||
| * | #14983: always add a line end after a MIME boundary marker. | R David Murray | 2014-02-08 | 5 | -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 Natali | 2014-06-19 | 1 | -4/+9 | |
|/ |