summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Issue #15142: Fix reference leak when deallocating instances of types ↵Antoine Pitrou2012-06-232-0/+9
| | | | created using PyType_FromSpec().
* Issue #12965: More PyLong_As* clarifications. Thanks Stefan Krah.Mark Dickinson2012-06-231-22/+39
|
* Issue #12965: Clean up C-API docs for PyLong_AsLongLong(AndOverflow); ↵Mark Dickinson2012-06-231-18/+23
| | | | clarify that __int__ will be called for non-PyLongs
* Issue #12965: Clean up C-API docs for PyLong_AsLong(AndOverflow); clarify ↵Mark Dickinson2012-06-231-13/+16
| | | | that __int__ will be called for non-PyLongs
* Remove useless test (flowinfo is unsigned).Charles-François Natali2012-06-231-2/+2
|
* Issue #14653: email.utils.mktime_tz() no longer relies on systemAlexander Belopolsky2012-06-223-4/+13
| | | | mktime() when timezone offest is supplied.
* #10053: Don't close FDs when FileIO.__init__ failsHynek Schlawack2012-06-213-6/+19
| | | | Loosely based on the work by Hirokazu Yamamoto.
* Fix GzipFile's handling of filenames given as bytes objects.Nadeem Vawda2012-06-193-4/+20
|
* Issue #15101: Make pool finalizer avoid joining current thread.Richard Oudkerk2012-06-182-3/+8
|
* Fix NEWS entry for #15036Petri Lehtinen2012-06-181-3/+3
|
* Update out of date docstring.R David Murray2012-06-171-7/+5
|
* #14840: Add a bit on the difference between tuples and lists. Initial patch ↵Ezio Melotti2012-06-172-9/+22
| | | | by Zachary Ware.
* Ignore X-Antivirus headers in test_nntplibNick Coghlan2012-06-172-1/+7
|
* Issue #15095: Use better assertions in test_imaplibNick Coghlan2012-06-171-5/+5
|
* Issue #15043: skip test_gdb if the custom hooks can't be loadedNick Coghlan2012-06-172-0/+12
|
* Issue #15044: Handle Fedora 17's approach to ndbm compatibilityNick Coghlan2012-06-171-1/+5
|
* #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
|
* Issue #14937: Fix typo. Patch by Roger Serwy.Martin v. Löwis2012-06-141-1/+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.
* Issue #12510: Revise and triple # of calltip tests, with an eye to unittestTerry Jan Reedy2012-06-073-76/+138
| | | | | | use. Make the get_entity 'method' a module function as it did not use 'self'. Delete buggy _find_constructor function that is not needed, at least in 3.x. Revise get_argspec so all tests pass. Add and fix NEWS entries.
* 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 clausesNick Coghlan2012-06-071-0/+7
|
* Fixes issue #15000: support the odd x32 abi on posixsubprocess's system call.Gregory P. Smith2012-06-052-0/+9
|
* Revert the modification of e.strerror in 3.2 as that kind of change couldGregory P. Smith2012-06-031-3/+0
| | | | break someone's over specified test that depends on the exact error message.
* Move the 14992 note to the correct section.Gregory P. Smith2012-06-031-5/+5
|
* Fixes Issue #14992: os.makedirs(path, exist_ok=True) would raise an OSErrorGregory P. Smith2012-06-033-8/+53
| | | | | | when the path existed and had the S_ISGID mode bit set when it was not explicitly asked for. This is no longer an exception as mkdir cannot control if the OS sets that bit for it or not.
* PEP 3131: support non-ASCII characters in auto-completion of identifiers.Martin v. Löwis2012-06-032-2/+2
|
* Do not try to insert control characters.Martin v. Löwis2012-06-031-1/+1
|
* Issue #14937: Perform auto-completion of filenames in strings even for ↵Martin v. Löwis2012-06-033-2/+24
| | | | non-ASCII filenames.
* Issue 12510: Expand 2 bare excepts. Improve comments. Change deceptive nameTerry Jan Reedy2012-06-031-15/+17
| | | | | | '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 3.2Sandro Tosi2012-06-021-1/+1
|
* Issue #14926: fix docstring highlightSandro 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
|
* don't leak if the __class__ closure is setBenjamin Peterson2012-06-021-4/+2
|
* #14957: clarify splitlines docs.R David Murray2012-06-011-1/+7
| | | | Initial patch by Michael Driscoll, I added the example.
* Issue #14968: set 'Inplace Operators' as subsection; patch by Lars BuitinckSandro Tosi2012-06-011-1/+1
|
* Issue #14962: Update text coloring in IDLE shell window after changingNed Deily2012-05-312-0/+8
| | | | options. Patch by Roger Serwy.
* Added test skip under Windows, as not applicable there.Vinay Sajip2012-05-311-0/+1
|
* Add news item for #14943Brian Curtin2012-05-291-0/+3
|
* Fix #14943. Update the proper default value and list the proper argument ↵Brian Curtin2012-05-291-3/+3
| | | | names in the explanation.
* 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.
* Issue #14443: Tell rpmbuild to use the correct version of PythonNick Coghlan2012-05-282-1/+5
|