summaryrefslogtreecommitdiffstats
path: root/Misc/ACKS
Commit message (Collapse)AuthorAgeFilesLines
* Merge with 3.4Zachary Ware2015-04-131-0/+1
|\
| * Attribute Michael Dorman for his initial patch on issue #18402.Zachary Ware2015-04-131-0/+1
| |
* | Issue #23338: Fixed formatting ctypes error messages on Cygwin.Serhiy Storchaka2015-04-041-0/+1
|\ \ | |/ | | | | Patch by Makoto Kato.
| * Issue #23338: Fixed formatting ctypes error messages on Cygwin.Serhiy Storchaka2015-04-041-0/+1
| | | | | | | | Patch by Makoto Kato.
* | #11468: merge with 3.4.Ezio Melotti2015-03-241-0/+1
|\ \ | |/
| * #11468: improve unittest basic example. Initial patch by Florian Preinstorfer.Ezio Melotti2015-03-241-0/+1
| |
* | Merge 3.4 (faulthandler ICC)Victor Stinner2015-03-231-0/+1
|\ \ | |/
| * Issue #23654: Fix faulthandler._stack_overflow() for the Intel C Compiler (ICC)Victor Stinner2015-03-231-0/+1
| | | | | | | | | | | | | | Issue #23654: Turn off ICC's tail call optimization for the stack_overflow generator. ICC turns the recursive tail call into a loop. Patch written by Matt Frank.
* | Merge: #23539: Set Content-Length to 0 for PUT, POST, and PATCH if body is None.R David Murray2015-03-221-0/+1
|\ \ | |/
| * #23539: Set Content-Length to 0 for PUT, POST, and PATCH if body is None.R David Murray2015-03-221-0/+1
| | | | | | | | | | | | | | | | Some http servers will reject PUT, POST, and PATCH requests if they do not have a Content-Length header. Patch by James Rutherford, with additional cleaning up of the 'request' documentation by me.
* | Issue #23051: multiprocessing.Pool methods imap() and imap_unordered() nowSerhiy Storchaka2015-03-131-0/+2
|\ \ | |/ | | | | | | handle exceptions raised by an iterator. Patch by Alon Diamant and Davin Potts.
| * Issue #23051: multiprocessing.Pool methods imap() and imap_unordered() nowSerhiy Storchaka2015-03-131-0/+2
| | | | | | | | | | handle exceptions raised by an iterator. Patch by Alon Diamant and Davin Potts.
| * Issue #23192: Fixed generator lambdas. Patch by Bruno Cauet.Serhiy Storchaka2015-03-111-0/+1
| |
* | Issue #19980: Improved help() for non-recognized strings. help('') nowSerhiy Storchaka2015-02-281-0/+1
| | | | | | | | | | shows the help on str. help('help') now shows the help on help(). Original patch by Mark Lawrence.
* | Merge 3.4 (httplib)Victor Stinner2015-02-271-0/+1
|\ \ | |/
| * Issue #23526: Fix ResourceWarning in test_httplib. Patch written by Alex Shkop.Victor Stinner2015-02-271-0/+1
| |
* | merge 3.4 (#21548)Benjamin Peterson2015-02-171-0/+1
|\ \ | |/
| * fix pydoc.apropos and pydoc.synopsis on modules with empty docstrings (#21548)Benjamin Peterson2015-02-171-0/+1
| | | | | | | | Patch by Yuyang Guo and Berker Peksag.
* | merge 3.4 (#22735)Benjamin Peterson2015-02-061-0/+1
|\ \ | |/
| * fix many custom mro() edge cases and improve code quality (#22735)Benjamin Peterson2015-02-061-0/+1
| | | | | | | | Patch by Eldar Abusalimov.
* | Issue #15859: PyUnicode_EncodeFSDefault(), PyUnicode_EncodeMBCS() andVictor Stinner2015-01-261-0/+1
| | | | | | | | | | | | PyUnicode_EncodeCodePage() now raise an exception if the object is not an Unicode object. For PyUnicode_EncodeFSDefault(), it was already the case on platforms other than Windows. Patch written by Campbell Barton.
* | Issue #23180: merge from 3.4Ned Deily2015-01-181-0/+1
|\ \ | |/
| * Issue #23180: Rename IDLE "Windows" menu item to "Window".Ned Deily2015-01-181-0/+1
| | | | | | | | Patch by Al Sweigart.
* | merge 3.4 (#23221)Benjamin Peterson2015-01-131-0/+1
|\ \ | |/
| * fix instances of consecutive articles (closes #23221)Benjamin Peterson2015-01-131-0/+1
| | | | | | | | Patch by Karan Goel.
* | Issue #19777: Provide a home() classmethod on Path objects.Antoine Pitrou2015-01-121-0/+2
| | | | | | | | Contributed by Victor Salgado and Mayank Tripathi.
* | Issue #23206: Make ``json.dumps(..., ensure_ascii=False)`` as fast as the ↵Antoine Pitrou2015-01-111-0/+1
| | | | | | | | default case of ``ensure_ascii=True``. Patch by Naoki Inada.
* | Issue #22038: pyatomic.h now uses stdatomic.h or GCC built-in functions forVictor Stinner2015-01-091-0/+2
| | | | | | | | | | atomic memory access if available. Patch written by Vitor de Lima and Gustavo Temple.
* | Issue #22902: The "ip" command is now used on Linux to determine MAC addressSerhiy Storchaka2014-11-301-0/+1
| | | | | | | | in uuid.getnode(). Pach by Bruno Cauet.
* | (Merge 3.4) Closes #22348: Rephrase asyncio.StreamWriter.drain() documentationVictor Stinner2014-11-281-0/+1
|\ \ | |/ | | | | Patch written by Martin Richard.
| * Closes #22348: Rephrase asyncio.StreamWriter.drain() documentationVictor Stinner2014-11-281-0/+1
| | | | | | | | Patch written by Martin Richard.
* | Issue #22775: Fixed unpickling of http.cookies.SimpleCookie with protocol 2Serhiy Storchaka2014-11-021-0/+1
|\ \ | |/ | | | | and above. Patch by Tim Graham.
| * Issue #22775: Fixed unpickling of http.cookies.SimpleCookie with protocol 2Serhiy Storchaka2014-11-021-0/+1
| | | | | | | | and above. Patch by Tim Graham.
* | #22751: merge with 3.4.Ezio Melotti2014-11-021-0/+1
|\ \ | |/
| * #22751: fix test___all__ warning about modified environment in the tests. ↵Ezio Melotti2014-11-021-0/+1
| | | | | | | | Patch by Michael Cetrulo.
| * #22196: link to Enum in the nametuple documentation. Patch by Karmen Dykstra.Ezio Melotti2014-10-281-0/+1
| |
* | Issue #6623: Remove deprecated Netrc class in the ftplib module.Berker Peksag2014-11-011-0/+1
| | | | | | | | Patch by Matt Chaput.
* | Issue #18216: gettext now raises an error when a .mo file has an unsupported ↵Antoine Pitrou2014-10-281-0/+1
| | | | | | | | major version number. Patch by Aaron Hill.
* | #22196: link to Enum in the nametuple documentation. Patch by Karmen Dykstra.Ezio Melotti2014-10-281-0/+1
| |
* | #22237: merge patch attribution fix.Ezio Melotti2014-10-281-0/+1
|\ \ | |/
| * #22237: fix patch attribution.Ezio Melotti2014-10-281-0/+1
| |
* | Issue #22261: Add a note to PCbuild\readme.txt about MSBuild switches.Zachary Ware2014-10-261-0/+1
| | | | | | | | | | | | Specifically, that they can be passed at the end of a build.bat invocation. Initial patch by Shorya Raj.
* | Merge with 3.4Terry Jan Reedy2014-10-101-0/+1
|\ \ | |/
| * Issue 22603: add Francisco Fernández Castaño to ACKS.Terry Jan Reedy2014-10-101-0/+1
| |
* | Add Dan O'Reilly to Misc/ACKSAntoine Pitrou2014-10-051-0/+1
| |
* | Issue #21905: Avoid RuntimeError in pickle.whichmodule() when sys.modules is ↵Antoine Pitrou2014-10-041-0/+1
|\ \ | |/ | | | | | | | | mutated while iterating. Patch by Olivier Grisel.
| * Issue #21905: Avoid RuntimeError in pickle.whichmodule() when sys.modules is ↵Antoine Pitrou2014-10-041-0/+1
| | | | | | | | | | | | mutated while iterating. Patch by Olivier Grisel.
* | Closes issue #20858: Enhancements/fixes to pure-python datetime moduleAlexander Belopolsky2014-09-281-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This patch brings the pure-python datetime more in-line with the C module. Patch contributed by Brian Kearns, a PyPy developer. PyPy project has been running these modifications in PyPy2 stdlib. This commit includes: - General PEP8/cleanups; - Better testing of argument types passed to constructors; - Removal of duplicate operations; - Optimization of timedelta creation; - Caching the result of __hash__ like the C accelerator; - Enhancements/bug fixes in tests.
* | merge 3.4 (#22379)Benjamin Peterson2014-09-281-0/+1
|\ \ | |/
| * check that exception messages are not empty (#22379)Benjamin Peterson2014-09-281-0/+1
| | | | | | | | Patch by Yongzhi Pan.