summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* #10053: Don't close FDs when FileIO.__init__ failsHynek Schlawack2012-06-213-6/+20
| | | | Loosely based on the work by Hirokazu Yamamoto.
* Issue #15101: Make pool finalizer avoid joining current threadRichard Oudkerk2012-06-182-3/+8
|
* Fix NEWS entry for #15036Petri Lehtinen2012-06-181-3/+3
|
* #14840: Add a bit on the difference between tuples and lists. Initial patch ↵Ezio Melotti2012-06-172-9/+22
| | | | by Zachary Ware.
* Issue #15043: skip test_gdb if the custom hooks can't be loaded (backport ↵Nick Coghlan2012-06-172-0/+12
| | | | from 3.x)
* Issue #15044: Handle Fedora 17's approach to ndbm compatibility (backport ↵Nick Coghlan2012-06-171-1/+5
| | | | from 3.x)
* Issue #15054: Fix incorrect tokenization of 'b' and 'br' string literals.Meador Inge2012-06-173-5/+34
| | | | Patch by Serhiy Storchaka.
* #15036: Make a repeated changes and flushes work with single-file mailboxesPetri Lehtinen2012-06-153-0/+16
|
* Issue #14933: fix misleading doc about weakref support in extension types.Antoine Pitrou2012-06-151-3/+2
|
* Skip test_bigmem.test_unicode_repr_oflw, since it crashes (issue #14904).Antoine Pitrou2012-06-151-0/+1
|
* Issue #15060: better fix, thanks to review on #python-devSandro Tosi2012-06-131-1/+1
|
* Issue #15060: fix typo in socket doc; Patch by anatoly techtonikSandro Tosi2012-06-131-1/+1
|
* Issue #10133: Make multiprocessing deallocate buffer if socket read fails.Richard Oudkerk2012-06-112-13/+19
| | | | Patch by Hallvard B Furuseth.
* Minor formatting fix=upRaymond Hettinger2012-06-101-1/+1
|
* Wrap fat lines and improve some variable names.Raymond Hettinger2012-06-091-17/+20
|
* Code cleanupsRaymond Hettinger2012-06-082-77/+106
|
* #8652: update errors tutorial.R David Murray2012-06-081-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 fixesTerry Jan Reedy2012-06-072-3/+14
|
* Issue #13854: Properly handle non-integer, non-string arg to SystemExitRichard Oudkerk2012-06-063-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 correctlyRichard Oudkerk2012-06-063-3/+19
| | | | Initial patch by mouad
* Nudge readers towards a more accurate mental model for loop else clauses ↵Nick Coghlan2012-06-071-0/+7
| | | | (Backport from 3.x)
* Issue 12510: Expand 2 bare excepts. Improve comments. Change deceptive nameTerry Jan Reedy2012-06-031-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 Reedy2012-06-031-16/+13
| | | | Code patch by Roger Serwy.
* backport c4bd68be5fc6 to 2.7Sandro Tosi2012-06-021-1/+1
|
* refer to time.strftimeSandro Tosi2012-06-021-8/+8
|
* #14957: fix doc typo.R David Murray2012-06-021-1/+1
|
* Improve tooltips for splitlines() by showing that the default for keepends ↵Raymond Hettinger2012-06-023-3/+3
| | | | is False.
* #14957: clarify splitlines docs.R David Murray2012-06-011-1/+7
| | | | Initial patch by Michael Driscoll, I added the example.
* Issue #14962: Update text coloring in IDLE shell window after changingNed Deily2012-05-312-0/+8
| | | | options. Patch by Roger Serwy.
* Changed comment on test skip.Vinay Sajip2012-05-311-1/+1
|
* Issue #10997: Prevent a duplicate entry in IDLE's "Recent Files" menu.Ned Deily2012-05-292-1/+3
|
* Issue #14775: Fix a potential quadratic dict build-up due to the garbage ↵Antoine Pitrou2012-05-283-3/+61
| | | | | | collector repeatedly trying to untrack dicts. Additional comments by Tim Silk.
* Issue #9041: raised exception is misleadingMeador Inge2012-05-283-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 Reedy2012-05-282-3/+9
| | | | Original patch by Roger Serwy.
* #11785: fix the :mod: references in email package submodule titles.R David Murray2012-05-2710-20/+20
|
* #10365 Trim trailing whitespaceTerry Jan Reedy2012-05-271-1/+1
|
* Issue #10365: File open dialog now works instead of crashingTerry Jan Reedy2012-05-273-6/+17
| | | | even when parent window is closed. Patch by Roger Serwy.
* Issue #14876: Use user-selected font for highlight configuration.Terry Jan Reedy2012-05-262-2/+7
| | | | Patch by Roger Serwy.
* Issue #14881: Allow normal non-main thread to spawn a dummy processRichard Oudkerk2012-05-251-1/+2
| | | | Fix suggested by Itay Brandes
* #4841: Fix FileIO constructor to honor closefd when called repeatedlyHynek Schlawack2012-05-252-3/+20
| | | | Patch by Victor Stinner.
* Fix other test requirements.Antoine Pitrou2012-05-241-3/+2
|
* Fix memory constraint for test_decodeasciiAntoine Pitrou2012-05-241-1/+1
|
* Issue #14036: return None when port in urlparse cross 65535Senthil Kumaran2012-05-243-3/+13
|
* Issue #14888: Fix misbehaviour of the _md5 module when called on data larger ↵Antoine Pitrou2012-05-232-3/+17
| | | | than 2**32 bytes.
* Restore [] where default arguments are not keywordsHynek Schlawack2012-05-224-4/+4
| | | | | | | | Reverts some changes of a36666c52115. In the case of os's `mknod(filename[, mode=0600[, device=0]])`, I have nested the [] as setting mode doesn't require to set device (but setting device requires to set mode).
* #14804: Remove [] around optional arguments with default valuesHynek Schlawack2012-05-2225-61/+61
| | | | | Mostly just mechanical removal of []. In some rare cases I've pulled the default value up into the argument list.
* #14875: Use float('inf') instead of float('1e66666') in the json module.Ezio Melotti2012-05-212-3/+4
|
* Fixes #14864: Added documentation on how to undo the effects of a ↵Vinay Sajip2012-05-201-1/+2
| | | | logging.disable() call.
* Document when json.load's parse_constant behaviour changedHynek Schlawack2012-05-201-0/+3
| | | | It doesn't get called on 'null', 'true', 'false' since f686aced02a3.
* merge headsSenthil Kumaran2012-05-201-0/+1
|\