summaryrefslogtreecommitdiffstats
path: root/Misc/ACKS
Commit message (Collapse)AuthorAgeFilesLines
* Issue #25503: Fixed inspect.getdoc() for inherited docstrings of properties.Serhiy Storchaka2015-10-291-0/+1
| | | | Original patch by John Mark Vandenberg.
* Issue #21827: Fixed textwrap.dedent() for the case when largest commonSerhiy Storchaka2015-10-281-0/+1
|\ | | | | | | | | whitespace is a substring of smallest leading whitespace. Based on patch by Robert Li.
| * Issue #21827: Fixed textwrap.dedent() for the case when largest commonSerhiy Storchaka2015-10-281-0/+1
| | | | | | | | | | whitespace is a substring of smallest leading whitespace. Based on patch by Robert Li.
* | Merge 3.4 (Issue #25461)Victor Stinner2015-10-231-0/+1
|\ \ | |/
| * Issue #25461: Rephrase os.walk() docVictor Stinner2015-10-231-0/+1
| | | | | | | | Patch written by Bernt Røskar Brenna.
* | Issue #25161: Merge full stops from 3.4 into 3.5Martin Panter2015-10-101-0/+1
|\ \ | |/
| * Issue #25161: Add full stops in documentation; patch by Takase ArihiroMartin Panter2015-10-101-0/+1
| |
* | merge 3.4 (#25319)Benjamin Peterson2015-10-061-0/+1
|\ \ | |/
| * reinitialize an Event's Condition with a regular lock (closes #25319)Benjamin Peterson2015-10-061-0/+1
| |
* | Issue #23972: updates to asyncio datagram API. By Chris Laws. (Merge 3.4->3.5.)Guido van Rossum2015-10-051-0/+1
|\ \ | |/
| * Issue #23972: updates to asyncio datagram API. By Chris Laws.Guido van Rossum2015-10-051-0/+1
| |
* | Issue #25304: Add asyncio.run_coroutine_threadsafe(). By Vincent Michel. ↵Guido van Rossum2015-10-031-0/+1
|\ \ | |/ | | | | (Merge 3.4->3.5.)
| * Issue #25304: Add asyncio.run_coroutine_threadsafe(). By Vincent Michel.Guido van Rossum2015-10-031-0/+1
| |
* | Issues #25232, #24657: Merge two CGI server fixes from 3.4 into 3.5Martin Panter2015-10-031-0/+1
|\ \ | |/
| * Issue #25232: Fix CGIRequestHandler's splitting of URL queryMartin Panter2015-10-031-0/+1
| | | | | | | | Patch from Xiang Zhang.
* | Issue #25034: Merge from 3.4.Eric V. Smith2015-09-291-0/+1
|\ \ | |/
| * Fixed issue #25034: Fix string.Formatter problem with auto-numberingEric V. Smith2015-09-291-0/+1
| | | | | | | | and nested format_specs. Patch by Anthon van der Neut.
* | Merge 3.4 -> 3.5Andrew Svetlov2015-09-241-0/+1
|\ \ | |/
| * Add Benjamin Hodgson to Misc/ACKAndrew Svetlov2015-09-241-0/+1
| |
* | Merge 3.4 (asyncio)Victor Stinner2015-09-211-0/+1
|\ \ | |/
| * Issue #23630, asyncio: host parameter of loop.create_server() can now be aVictor Stinner2015-09-211-0/+1
| | | | | | | | sequence of strings. Patch written by Yann Sionneau.
* | Issue #25176: Merge cgi.parse_qsl link from 3.4 into 3.5Martin Panter2015-09-201-0/+1
|\ \ | |/
| * Issue #25176: Correct link for cgi.parse_qsl; patch from Ville SkyttäMartin Panter2015-09-201-0/+1
| |
* | Issue #24915: Add Clang support to PGO builds and use the test suiteBrett Cannon2015-09-181-0/+1
| | | | | | | | | | | | for profile data. Thanks to Alecsandru Patrascu of Intel for the initial patch.
* | Issue #25030: Merge seek() doc fixes from 3.4 into 3.5Martin Panter2015-09-111-0/+1
|\ \ | |/
| * Issue #25030: Do not document seek() as if it accepts keyword argumentsMartin Panter2015-09-111-0/+1
| | | | | | | | Patch from Shiyao Ma.
* | Issue #24984: Merge 3.4 into 3.5Martin Panter2015-09-091-0/+1
|\ \ | |/
| * Issue #24984: Document AF_BLUETOOTH socket address formatsMartin Panter2015-09-091-0/+1
| | | | | | | | Patch from Tim Tisdall.
* | Issue #25019: Fixed a crash caused by setting non-string key of expat parser.Serhiy Storchaka2015-09-071-0/+1
|\ \ | |/ | | | | | | Added additional tests for expat parser attributes. Based on patch by John Leitch.
| * Issue #25019: Fixed a crash caused by setting non-string key of expat parser.Serhiy Storchaka2015-09-071-0/+1
| | | | | | | | | | Added additional tests for expat parser attributes. Based on patch by John Leitch.
* | Issue #25004: Merge 3.4 into 3.5Martin Panter2015-09-071-0/+1
|\ \ | |/
| * Issue #25004: Handle out-of-disk-space error in LargeMmapTestsMartin Panter2015-09-071-0/+1
| | | | | | | | Patch from John Beck.
* | Issue #23406: Merge 3.4 into 3.5Martin Panter2015-09-071-0/+1
|\ \ | |/
| * Issue #23406: Clarify documentation on multiplying a sequenceMartin Panter2015-09-071-0/+1
| | | | | | | | Patch from Matheus Vieira Portela.
* | Merge 3.4 (create_stdio)Victor Stinner2015-09-041-0/+1
|\ \ | |/
| * Fix race condition in create_stdio()Victor Stinner2015-09-041-0/+1
| | | | | | | | | | | | | | | | Issue #24891: Fix a race condition at Python startup if the file descriptor of stdin (0), stdout (1) or stderr (2) is closed while Python is creating sys.stdin, sys.stdout and sys.stderr objects. These attributes are now set to None if the creation of the object failed, instead of raising an OSError exception. Initial patch written by Marco Paolini.
* | Issue #24952: Merge 3.4 into 3.5Martin Panter2015-08-311-0/+1
|\ \ | |/
| * Issue #24952: Clarify default argument of stack_size() in threading, _threadMartin Panter2015-08-311-0/+1
| | | | | | | | Patch from Mattip.
* | Issue #24808: Merge 3.4 into 3.5; adjust new tp_as_async fieldMartin Panter2015-08-251-0/+1
|\ \ | |/
| * Issue #24808: Update the documentation of some PyTypeObject fieldsMartin Panter2015-08-251-0/+1
| | | | | | | | Patch by Joseph Weston.
* | Issue #22812: Fix unittest discovery examples.Robert Collins2015-08-241-0/+1
|\ \ | |/ | | | | Patch from Pam McA'Nulty.
| * Issue #22812: Fix unittest discovery examples.Robert Collins2015-08-241-0/+1
| | | | | | | | Patch from Pam McA'Nulty.
* | Issue #20362: Honour TestCase.longMessage correctly in assertRegex.Robert Collins2015-08-191-0/+1
| | | | | | | | Patch from Ilia Kurenkov.
* | (Merge 3.4) cgi.FieldStorage.read_multi ignores Content-LengthVictor Stinner2015-08-181-0/+1
|\ \ | |/ | | | | | | | | Issue #24764: cgi.FieldStorage.read_multi() now ignores the Content-Length header in part headers. Patch written by Peter Landry and reviewed by Pierre Quentel.
| * cgi.FieldStorage.read_multi ignores Content-LengthVictor Stinner2015-08-181-0/+1
| | | | | | | | | | | | Issue #24764: cgi.FieldStorage.read_multi() now ignores the Content-Length header in part headers. Patch written by Peter Landry and reviewed by Pierre Quentel.
* | Merge with 3.4Terry Jan Reedy2015-08-171-0/+1
|\ \ | |/
| * Issue #23672: ACKSTerry Jan Reedy2015-08-171-0/+1
| |
* | Issue #24774: Fix docstring in http.server.test.Robert Collins2015-08-171-0/+1
|\ \ | |/ | | | | Patch from Chiu-Hsiang Hsu.
| * Issue #24774: Fix docstring in http.server.test.Robert Collins2015-08-171-0/+1
| | | | | | | | Patch from Chiu-Hsiang Hsu.
* | Merge: #21167: Fix definition of NAN when ICC used without -fp-model strict.R David Murray2015-08-131-0/+1
|\ \ | |/