Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Flush stdout and stderr when running tests in parallel | Antoine Pitrou | 2012-06-27 | 1 | -0/+2 | |
| | | | | (helps getting results in real-time when stdio is transmitted over a pipe or socket) | |||||
* | Allow passing extra testing options to the buildbot test scripts | Antoine Pitrou | 2012-06-27 | 2 | -2/+2 | |
| | ||||||
* | issue13666 - Fixing datetime documentation example when using tzinfo | Senthil Kumaran | 2012-06-26 | 1 | -9/+8 | |
| | ||||||
* | Fixes issue #12268 for file readline, readlines and read() and readinto methods. | Gregory P. Smith | 2012-06-26 | 3 | -5/+212 | |
| | | | | | | They no longer lose data when an underlying read system call is interrupted. IOError is no longer raised due to a read system call returning EINTR from within these methods. | |||||
* | Try to fix failure of a Windows buildbot to capture name resolution errors. | Antoine Pitrou | 2012-06-25 | 1 | -0/+3 | |
| | ||||||
* | Issue #15179: Closed socket on connection failure. Thanks to Kazutaka Morita ↵ | Vinay Sajip | 2012-06-25 | 1 | -1/+5 | |
| | | | | for the patch. | |||||
* | Issue #15170: Try the HOST_PYTHON hack for 2.7. | Stefan Krah | 2012-06-25 | 1 | -0/+1 | |
| | ||||||
* | Remove useless test (flowinfo is unsigned). | Charles-François Natali | 2012-06-23 | 1 | -2/+2 | |
| | ||||||
* | Fixed the name of the 'email.Utils' module in tests. | Alexander Belopolsky | 2012-06-22 | 1 | -2/+2 | |
| | ||||||
* | Issue #14653: email.utils.mktime_tz() no longer relies on system | Alexander Belopolsky | 2012-06-22 | 3 | -4/+13 | |
| | | | | mktime() when timezone offest is supplied. | |||||
* | #10053: Don't close FDs when FileIO.__init__ fails | Hynek Schlawack | 2012-06-21 | 3 | -6/+20 | |
| | | | | Loosely based on the work by Hirokazu Yamamoto. | |||||
* | Issue #15101: Make pool finalizer avoid joining current thread | Richard Oudkerk | 2012-06-18 | 2 | -3/+8 | |
| | ||||||
* | Fix NEWS entry for #15036 | Petri Lehtinen | 2012-06-18 | 1 | -3/+3 | |
| | ||||||
* | #14840: Add a bit on the difference between tuples and lists. Initial patch ↵ | Ezio Melotti | 2012-06-17 | 2 | -9/+22 | |
| | | | | by Zachary Ware. | |||||
* | Issue #15043: skip test_gdb if the custom hooks can't be loaded (backport ↵ | Nick Coghlan | 2012-06-17 | 2 | -0/+12 | |
| | | | | from 3.x) | |||||
* | Issue #15044: Handle Fedora 17's approach to ndbm compatibility (backport ↵ | Nick Coghlan | 2012-06-17 | 1 | -1/+5 | |
| | | | | from 3.x) | |||||
* | Issue #15054: Fix incorrect tokenization of 'b' and 'br' string literals. | Meador Inge | 2012-06-17 | 3 | -5/+34 | |
| | | | | Patch by Serhiy Storchaka. | |||||
* | #15036: Make a repeated changes and flushes work with single-file mailboxes | Petri Lehtinen | 2012-06-15 | 3 | -0/+16 | |
| | ||||||
* | Issue #14933: fix misleading doc about weakref support in extension types. | Antoine Pitrou | 2012-06-15 | 1 | -3/+2 | |
| | ||||||
* | Skip test_bigmem.test_unicode_repr_oflw, since it crashes (issue #14904). | Antoine Pitrou | 2012-06-15 | 1 | -0/+1 | |
| | ||||||
* | Issue #15060: better fix, thanks to review on #python-dev | Sandro Tosi | 2012-06-13 | 1 | -1/+1 | |
| | ||||||
* | Issue #15060: fix typo in socket doc; Patch by anatoly techtonik | Sandro Tosi | 2012-06-13 | 1 | -1/+1 | |
| | ||||||
* | Issue #10133: Make multiprocessing deallocate buffer if socket read fails. | Richard Oudkerk | 2012-06-11 | 2 | -13/+19 | |
| | | | | Patch by Hallvard B Furuseth. | |||||
* | Minor formatting fix=up | Raymond Hettinger | 2012-06-10 | 1 | -1/+1 | |
| | ||||||
* | Wrap fat lines and improve some variable names. | Raymond Hettinger | 2012-06-09 | 1 | -17/+20 | |
| | ||||||
* | Code cleanups | Raymond Hettinger | 2012-06-08 | 2 | -77/+106 | |
| | ||||||
* | #8652: update errors tutorial. | R David Murray | 2012-06-08 | 1 | -3/+11 | |
| | | | | | | | The tutorial had some outdated examples. The patch also adds a caution about the meaning of parens in the except statement. Patch by Marien Zwart. | |||||
* | NEWS fixes | Terry Jan Reedy | 2012-06-07 | 2 | -3/+14 | |
| | ||||||
* | Issue #13854: Properly handle non-integer, non-string arg to SystemExit | Richard Oudkerk | 2012-06-06 | 3 | -3/+36 | |
| | | | | | Previously multiprocessing only expected int or str. It also wrongly used an exit code of 1 when the argument was a string instead of zero. | |||||
* | Issue #12157: pool.map() does not handle empty iterable correctly | Richard Oudkerk | 2012-06-06 | 3 | -3/+19 | |
| | | | | Initial patch by mouad | |||||
* | Nudge readers towards a more accurate mental model for loop else clauses ↵ | Nick Coghlan | 2012-06-07 | 1 | -0/+7 | |
| | | | | (Backport from 3.x) | |||||
* | Issue 12510: Expand 2 bare excepts. Improve comments. Change deceptive name | Terry Jan Reedy | 2012-06-03 | 1 | -14/+16 | |
| | | | | | | 'name' to 'expression' as the latter is what the string actually represents. The bug in this issue was only catching NameError and AttributeError when evaluating an expression that was not necessarily a name. | |||||
* | Issue 10365: Add and replace comments; condense defaulted attribute access. | Terry Jan Reedy | 2012-06-03 | 1 | -16/+13 | |
| | | | | Code patch by Roger Serwy. | |||||
* | backport c4bd68be5fc6 to 2.7 | Sandro Tosi | 2012-06-02 | 1 | -1/+1 | |
| | ||||||
* | refer to time.strftime | Sandro Tosi | 2012-06-02 | 1 | -8/+8 | |
| | ||||||
* | #14957: fix doc typo. | R David Murray | 2012-06-02 | 1 | -1/+1 | |
| | ||||||
* | Improve tooltips for splitlines() by showing that the default for keepends ↵ | Raymond Hettinger | 2012-06-02 | 3 | -3/+3 | |
| | | | | is False. | |||||
* | #14957: clarify splitlines docs. | R David Murray | 2012-06-01 | 1 | -1/+7 | |
| | | | | Initial patch by Michael Driscoll, I added the example. | |||||
* | Issue #14962: Update text coloring in IDLE shell window after changing | Ned Deily | 2012-05-31 | 2 | -0/+8 | |
| | | | | options. Patch by Roger Serwy. | |||||
* | Changed comment on test skip. | Vinay Sajip | 2012-05-31 | 1 | -1/+1 | |
| | ||||||
* | Issue #10997: Prevent a duplicate entry in IDLE's "Recent Files" menu. | Ned Deily | 2012-05-29 | 2 | -1/+3 | |
| | ||||||
* | Issue #14775: Fix a potential quadratic dict build-up due to the garbage ↵ | Antoine Pitrou | 2012-05-28 | 3 | -3/+61 | |
| | | | | | | collector repeatedly trying to untrack dicts. Additional comments by Tim Silk. | |||||
* | Issue #9041: raised exception is misleading | Meador Inge | 2012-05-28 | 3 | -25/+19 | |
| | | | | | | An issue in ctypes.c_longdouble, ctypes.c_double, and ctypes.c_float that caused an incorrect exception to be returned in the case of overflow has been fixed. | |||||
* | Issue12510: Attempting to get invalid tooltip no longer closes Idle. | Terry Jan Reedy | 2012-05-28 | 2 | -3/+9 | |
| | | | | Original patch by Roger Serwy. | |||||
* | #11785: fix the :mod: references in email package submodule titles. | R David Murray | 2012-05-27 | 10 | -20/+20 | |
| | ||||||
* | #10365 Trim trailing whitespace | Terry Jan Reedy | 2012-05-27 | 1 | -1/+1 | |
| | ||||||
* | Issue #10365: File open dialog now works instead of crashing | Terry Jan Reedy | 2012-05-27 | 3 | -6/+17 | |
| | | | | even when parent window is closed. Patch by Roger Serwy. | |||||
* | Issue #14876: Use user-selected font for highlight configuration. | Terry Jan Reedy | 2012-05-26 | 2 | -2/+7 | |
| | | | | Patch by Roger Serwy. | |||||
* | Issue #14881: Allow normal non-main thread to spawn a dummy process | Richard Oudkerk | 2012-05-25 | 1 | -1/+2 | |
| | | | | Fix suggested by Itay Brandes | |||||
* | #4841: Fix FileIO constructor to honor closefd when called repeatedly | Hynek Schlawack | 2012-05-25 | 2 | -3/+20 | |
| | | | | Patch by Victor Stinner. |