summaryrefslogtreecommitdiffstats
path: root/Misc/ACKS
Commit message (Collapse)AuthorAgeFilesLines
* Issue #20367: Fix behavior of concurrent.futures.as_completed() for duplicateVictor Stinner2014-01-271-0/+1
| | | | arguments. Patch by Glenn Langford.
* Issue #19036: Including locale.h should not depend on HAVE_LANGINFO_H.Stefan Krah2014-01-201-0/+1
|
* add Nikolaus Rath to ACKSBenjamin Peterson2014-01-191-0/+1
|
* merge 3.2 (#20246)Benjamin Peterson2014-01-141-0/+1
|\
| * complain when nbytes > buflen to fix possible buffer overflow (closes #20246)Benjamin Peterson2014-01-141-0/+1
| |
* | Issue #13107: argparse and optparse no longer raises an exception when outputSerhiy Storchaka2014-01-091-0/+1
| | | | | | | | | | a help on environment with too small COLUMNS. Based on patch by Elazar Gershuni.
* | Issue #19683: Removed empty tests from test_minidom. Patch by Ajitesh Gupta.Zachary Ware2013-12-191-0/+1
| |
* | Issue #20007: HTTPResponse.read(0) no more prematurely closes connection.Serhiy Storchaka2013-12-171-0/+1
| | | | | | | | Original patch by Simon Sapin.
* | Issue #17429: platform.linux_distribution() now decodes files from the UTF-8Victor Stinner2013-12-081-0/+1
| | | | | | | | | | | | | | encoding with the surrogateescape error handler, instead of decoding from the locale encoding in strict mode. It fixes the function on Fedora 19 which is probably the first major distribution release with a non-ASCII name. Patch written by Toshio Kuratomi.
* | Merge headsZachary Ware2013-11-261-0/+1
|\ \
| * | Issue #11508: Fixed uuid.getnode() and uuid.uuid1() on environment withSerhiy Storchaka2013-11-261-0/+1
| | | | | | | | | | | | virtual interface. Original patch by Kent Frazier.
* | | Issue #19588: Fixed tests in test_random that were silently skipped mostZachary Ware2013-11-261-0/+1
|/ / | | | | | | of the time. Patch by Julian Gindi.
* | Update Itamar's nameAndrew Kuchling2013-11-231-1/+1
| |
* | Issue #19340: Fix test_sysconfig when Python is built with an empty prefix.Antoine Pitrou2013-10-231-0/+1
| | | | | | | | Patch by Sunny K.
* | Issue #15207: Fix mimetypes to read from correct area in Windows registry ↵Tim Golden2013-10-221-0/+1
| | | | | | | | (Original patch by Dave Chambers)
* | #8964: fix platform._sys_version to handle IronPython 2.6+.Ezio Melotti2013-10-211-0/+1
| |
* | Closes #1215: document better why it is not a good idea to catch e.g. ↵Georg Brandl2013-10-061-0/+1
| | | | | | | | | | | | SIGSEGV and refer to faulthandler. Patch by Martin Pool.
* | Close #19092: ExitStack now reraises exceptions from __exit__Nick Coghlan2013-10-011-1/+1
| | | | | | | | Report and patch by Hrvoje Nikšić
* | Issue #12641: Avoid passing "-mno-cygwin" to the mingw32 compiler, except ↵Antoine Pitrou2013-09-301-0/+1
| | | | | | | | | | | | when necessary. Patch by Oscar Benjamin.
* | Issue #19018: The heapq.merge() function no longer suppresses IndexErrorRaymond Hettinger2013-09-151-0/+2
| |
* | Add Germán M. Bravo to Misc/ACKSEli Bendersky2013-09-131-0/+1
| |
* | Issue #18784: The uuid module no more attempts to load libc via ctypes.CDLL,Serhiy Storchaka2013-09-131-0/+1
| | | | | | | | | | if all necessary functions are already found in libuuid. Patch by Evgeny Sologubov.
* | Issue #18849: Fixed a Windows-specific tempfile bug where collision with anEli Bendersky2013-09-061-0/+1
| | | | | | | | | | existing directory caused mkstemp and related APIs to fail instead of retrying. Report and fix by Vlad Shcherbina.
* | Issue #18418: After fork(), reinit all threads states, not only active ones.Charles-François Natali2013-08-301-0/+1
| | | | | | | | Patch by A. Jesse Jiryu Davis.
* | #18833: add a test for test_telnetlib. Patch by Alex Volkov.Ezio Melotti2013-08-251-0/+1
| |
* | Issue #8865: Concurrent invocation of select.poll.poll() now raises aSerhiy Storchaka2013-08-201-0/+1
| | | | | | | | RuntimeError exception. Patch by Christian Schubert.
* | Issue #18676: Change 'positive' to 'non-negative' in queue.py put and getTerry Jan Reedy2013-08-101-0/+1
| | | | | | | | docstrings and ValueError messages. Patch by Zhongyue Luo
* | #18357: add tests for dictview set difference. Patch by Fraser Tweedale.Ezio Melotti2013-08-081-0/+1
| |
* | #18657: remove duplicate entries from Misc/ACKS.R David Murray2013-08-041-3/+0
| | | | | | | | Patch by Madison May.
* | Issue #17557: Fix os.getgroups() to work with the modified behavior ofNed Deily2013-08-021-0/+1
| | | | | | | | getgroups(2) on OS X 10.8. Original patch by Mateusz Lenik.
* | Issue #15494: test.support is now a package rather than a moduleNick Coghlan2013-07-281-0/+1
| | | | | | | | | | | | | | Also including this change in 3.3 to help avoid spurious conflicts between the two most active branches. (Initial patch by Indra Talip)
* | #16937: document that stdin is always buffered, even when -u is used. Patch ↵Ezio Melotti2013-07-251-0/+1
| | | | | | | | by Elena Oat.
* | Issue #18449: Make Tools/demo/ss1.py work again on Python 3. Patch bySerhiy Storchaka2013-07-151-0/+1
| | | | | | | | Févry Thibault.
* | Issue #18279: Add tests for idlelib/RstripExtension.py. Original patch byTerry Jan Reedy2013-07-131-0/+1
| | | | | | | | | | Phil Webster. With that available, modify RstripExtension.py to stop deleting null slices, which caused a file to be marked as changed when it was not.
* | #17987: properly document support.captured_xxx.R David Murray2013-07-111-0/+1
| | | | | | | | Patch by Dmi Baranov.
* | Issue #18351: Fix various issues withBrett Cannon2013-07-061-0/+1
| | | | | | | | | | | | | | | | | | importlib._bootstrap._get_sourcefile(). Thanks to its only use by the C API, it was never properly tested until now. Thanks to Neal Norwitz for discovering the bug and Madison May for the patch.
* | #18380: pass regex flags to the right argument. Patch by Valentina ↵Ezio Melotti2013-07-061-0/+1
| | | | | | | | Mukhamedzhanova.
* | #18155: Regex-escape delimiter, in case it is a regex special char.R David Murray2013-06-291-0/+1
| | | | | | | | Patch by Vajrasky Kok, with slight modification to the tests by me.
* | Issue #18315: Improve fileinput docs by adding 'bufsize' where missing andTerry Jan Reedy2013-06-281-0/+1
| | | | | | | | | | replacing redundant signature in input() docstring with one-line summary. Original patch by Terrel Shumway.
* | Issue #18256: Compilation fix for recent AIX releases. Patch by David Edelsohn.Antoine Pitrou2013-06-181-0/+1
| |
* | #17511: Keep IDLE find dialog open after clicking "Find Next".Roger Serwy2013-06-111-0/+1
| | | | | | | | Original patch by Sarah K.
* | #18126: update NumPy links in the documentation. Patch by Yury V. Zaytsev.Ezio Melotti2013-06-081-0/+1
| |
* | Issue #15392: Create a unittest framework for IDLE.Terry Jan Reedy2013-05-281-0/+1
| | | | | | | | Preliminary patch by Rajagopalasarma Jayakrishnan.
* | Issue #17532: Always include Options menu for IDLE on OS X.Ned Deily2013-05-221-0/+1
| | | | | | | | Patch by Guilherme Simões.
* | Issue #17901: fix TreeBuilder construction for an explicit element_factory=NoneEli Bendersky2013-05-181-0/+1
| | | | | | | | Based on report and patch by Aaron Oakley.
* | Add Nick Sloan for his contribution to #17732Brian Curtin2013-05-161-0/+1
| |
* | Issue #17606: Fixed support of encoded byte strings in the XMLGeneratorSerhiy Storchaka2013-05-121-0/+1
| | | | | | | | | | characters() and ignorableWhitespace() methods. Original patch by Sebastian Ortiz Vasquez.
* | #17841: remove missing codecs aliases from the documentation. Patch by ↵Ezio Melotti2013-05-101-0/+1
| | | | | | | | Thomas Fenzl.
* | #17809: fix a test failure in test_expanduser when $HOME has a trailing /. ↵Ezio Melotti2013-05-091-0/+1
| | | | | | | | Patch by Kubilay Kocak.
* | Issue #16601: Restarting iteration over tarfile no more continues from whereSerhiy Storchaka2013-05-091-0/+1
| | | | | | | | it left off. Patch by Michael Birtwell.