summaryrefslogtreecommitdiffstats
path: root/Misc/ACKS
Commit message (Collapse)AuthorAgeFilesLines
* Issue #7523: Add SOCK_CLOEXEC and SOCK_NONBLOCK to the socket module,Antoine Pitrou2010-10-141-0/+1
| | | | where supported by the system. Patch by Nikita Vetoshkin.
* Issue #10041: The signature of optional arguments in socket.makefile()Antoine Pitrou2010-10-131-0/+1
| | | | | didn't match that of io.open(), and they also didn't get forwarded properly to TextIOWrapper in text mode. Patch by Kai Zhu.
* #6612: add the author of the patch (W. Trevor King)Victor Stinner2010-10-121-0/+1
|
* Some platforms provide uintptr_t in inttypes.h. Patch byAntoine Pitrou2010-10-101-0/+1
| | | | Akira Kitada.
* Issue #6608: time.asctime is now checking struct tm fields its inputAlexander Belopolsky2010-10-011-1/+2
| | | | before passing it to the system asctime. Patch by MunSic Jeong.
* #7110: have regrtest print test failures and tracebacks to stderr not stdout.R. David Murray2010-09-291-0/+1
| | | | Patch by Sandro Tosi.
* Issue #1675951: Allow GzipFile to work with unseekable file objects.Antoine Pitrou2010-09-231-0/+1
| | | | Patch by Florian Festi.
* Updated VS7.1 project file. (I cannot test this file because I don't have VS7.1)Hirokazu Yamamoto2010-09-091-0/+1
|
* #6394: Add os.getppid() support for Windows.Amaury Forgeot d'Arc2010-09-071-0/+1
|
* Issue #9225: Remove the ROT_FOUR and DUP_TOPX opcode, the latter replacedAntoine Pitrou2010-09-041-0/+1
| | | | | by the new (and simpler) DUP_TOP_TWO. Performance isn't changed, but our bytecode is a bit simplified. Patch by Demur Rumed.
* Fix Björn's name in ACKS.Antoine Pitrou2010-09-041-1/+1
|
* Issue #7415: PyUnicode_FromEncodedObject() now uses the new buffer APIAntoine Pitrou2010-09-011-0/+1
| | | | properly. Patch by Stefan Behnel.
* Issue #9700: define HAVE_BROKEN_POSIX_SEMAPHORES under AIX 6.x. Patch byAntoine Pitrou2010-08-301-0/+1
| | | | Sébastien Sablé.
* Issue #1512791: In setframerate method of Wave_write, round non-integralMark Dickinson2010-08-281-0/+1
| | | | inputs to the nearest integer. Thanks Neil Tallim for the patch.
* #1194222: make parsedate always return RFC2822 four character years.R. David Murray2010-08-251-0/+1
| | | | | | | | Two character years are now converted to four character years using the Posix standard rule (<68 == 2000, >=68==1900). This makes the parsed date RFC2822 compliant even if the input is not. Patch and test by Jeffrey Finkelstein.
* only catch AttributeError in hasattr() #9666Benjamin Peterson2010-08-241-0/+1
|
* #7647: add ST_RDONLY, ST_NOSUID constants to os module.Andrew M. Kuchling2010-08-181-1/+2
| | | | (Also fix a name ordering in the ACKS file.)
* Issue #5737: Add Solaris-specific mnemonics in the errno module. Patch byAntoine Pitrou2010-08-181-0/+1
| | | | Matthew Ahrens.
* Issue #3488: Provide convenient shorthand functions `gzip.compress`Antoine Pitrou2010-08-171-0/+1
| | | | and `gzip.decompress`. Original patch by Anand B. Pillai.
* Issue #9550: a BufferedReader could issue an additional read when theAntoine Pitrou2010-08-111-0/+1
| | | | | | original read request had been satisfied, which can block indefinitely when the underlying raw IO channel is e.g. a socket. Report and original patch by Jason V. Miller.
* Issue #8834: Added a comment describing the order of entries in Misc/ACKS.Alexander Belopolsky2010-08-101-4/+10
| | | | Added names from release27-maint branch that were missing from py3k.
* Issue #6915: Under Windows, os.listdir() didn't release the GlobalAntoine Pitrou2010-08-091-0/+1
| | | | Interpreter Lock around all system calls. Original patch by Ryan Kelly.
* Issue #8814: function annotations (the `__annotations__` attribute)Antoine Pitrou2010-08-041-0/+1
| | | | | are now included in the set of attributes copied by default by functools.wraps and functools.update_wrapper. Patch by Terrence Cole.
* Issue #9496: Provide a test suite for the rlcompleter module. Patch byAntoine Pitrou2010-08-041-0/+1
| | | | Michele Orrù.
* as per discussion with antoine revert changes made in 83708 as the user ↵Giampaolo Rodolà2010-08-041-1/+0
| | | | useing ftplib's readline methods is supposed to always use a binary file
* fix issue #6822: ftplib's storline method doesn't work with text filesGiampaolo Rodolà2010-08-041-0/+1
|
* fix issue #2944: asyncore doesn't handle connection refused correctly (patch ↵Giampaolo Rodolà2010-08-041-0/+1
| | | | by Alexander Shigin). Merged from 2.7 branch.
* #3196: if needed pad a short base64 encoded word before trying to decode.R. David Murray2010-08-031-0/+1
| | | | | | | | | The RFCs encourage following Postel's law: be liberal in what you accept. So if someone forgot to pad the base64 encoded word payload to an even four bytes, we add the padding before handing it to base64mime.decode. Previously, missing padding resulted in a HeaderParseError. Patch by Jason Williams.
* #9444: use first of prefix_chars for help opt instead of raising errorR. David Murray2010-08-031-0/+1
| | | | | | | | | | | An argparse option parser created with a prefix_chars that did not include a '-' would happily add -h and --help options, and then throw an error when it tried to format the help because the - was an invalid prefix character. This patch makes it use the first character of prefix_chars as the character for the help options if and only if '-' is not one of the valid prefix_chars. Fix by Theodore Turocy, unit tests by Catherine Devlin.
* Fix ACKS alphabetization.R. David Murray2010-08-011-1/+1
|
* #8620: Cmd no longer truncates last character if stdin ends without newlineR. David Murray2010-08-011-0/+1
| | | | | | | | | | | | | | | | Cmd used to blindly chop off the last character of every input line. If the input reached EOF and there was no final new line, it would truncate the last character of the last command. This fix instead strips trailing \r\n from the input lines. While this is a small behavior change, it should not break any working code, since feeding a '\r\n' terminated file to Cmd would previously leave the \r's on the lines, resulting in failed command execution. I wrote the unit test in preparation for a PyOhio TeachMe session run by Catherine Devlin, and we can thank Catherine and the PyOhio session attendees for the fix. I've added Catherine to the Acks file for organizing and leading the TeachMe session, out of which we will hopefully get some new contributors.
* Add "longlist" and "source" commands, ideas borrowed from pdb++ by Antonio Cuni.Georg Brandl2010-07-301-0/+1
|
* #9354: Provide getsockopt() in asyncore file_wrapper(). Patch by Lukas Langa.Georg Brandl2010-07-281-1/+1
|
* Issue #9294: remove dead code in Objects/object.c. Patch by Grant Limberg.Antoine Pitrou2010-07-271-0/+1
|
* Add note about #7113 and add Łukasz Langa to ACKSBrian Curtin2010-07-261-0/+1
|
* Add Brian Brazil.Brett Cannon2010-07-231-0/+1
|
* Test calendar.monthrange.Brett Cannon2010-07-231-0/+1
| | | | Closes issue 9342. Thanks John Chandler for the patch.
* Issue #9282: Fixed --listfuncs option of trace.py. Thanks EliAlexander Belopolsky2010-07-201-0/+1
| | | | Bendersky for the patch.
* Issue #9243: Fix sndhdr module and add unit tests, contributed by James Lee.Victor Stinner2010-07-131-0/+1
|
* Reorder Jason "two O's" CoombsBrian Curtin2010-07-091-1/+1
|
* Fix sort order mistake in Misc/ACKS.R. David Murray2010-07-091-1/+1
|
* 7846: limit fnmatch pattern cache to _MAXCACHE=100 entries.R. David Murray2010-07-091-0/+1
| | | | Patch by Andrew Clegg.
* Implement #1578269. Patch by Jason R. Coombs.Brian Curtin2010-07-081-0/+1
| | | | | | | | | | | | | | | | Added Windows support for os.symlink when run on Windows 6.0 or greater, aka Vista. Previous Windows versions will raise NotImplementedError when trying to symlink. Includes numerous test updates and additions to test_os, including a symlink_support module because of the fact that privilege escalation is required in order to run the tests to ensure that the user is able to create symlinks. By default, accounts do not have the required privilege, so the escalation code will have to be exposed later (or documented on how to do so). I'll be following up with that work next. Note that the tests use ctypes, which was agreed on during the PyCon language summit.
* Issue 6507: accept source strings directly in dis.dis(). Original patch by ↵Nick Coghlan2010-07-031-0/+1
| | | | Daniel Urban
* Issue #5094: The ``datetime`` module now has a simple concrete classAlexander Belopolsky2010-06-141-0/+1
| | | | implementing ``datetime.tzinfo`` interface.
* Merged revisions 81971 via svnmerge fromMark Dickinson2010-06-131-0/+1
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r81971 | mark.dickinson | 2010-06-13 13:01:34 +0100 (Sun, 13 Jun 2010) | 1 line Ezio Melotti was missing from Misc/ACKS. ........
* Merged revisions 81969 via svnmerge fromMark Dickinson2010-06-131-0/+1
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r81969 | mark.dickinson | 2010-06-13 12:07:00 +0100 (Sun, 13 Jun 2010) | 1 line Add Éric Araujo to Misc/ACKS for doc work and many patch and commit reviews. ........
* Merged revisions 81967 via svnmerge fromMark Dickinson2010-06-131-0/+1
| | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r81967 | mark.dickinson | 2010-06-13 11:50:29 +0100 (Sun, 13 Jun 2010) | 4 lines Issue #8986: erfc was raising OverflowError on Linux for arguments in the (approximate) range (-27.3, 30.0), as a result of an escaped errno value. ........
* Added acknowlegement for Issue #3129Alexander Belopolsky2010-06-121-0/+1
|
* Merged revisions 80578 via svnmerge fromNick Coghlan2010-06-121-0/+1
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r80578 | nick.coghlan | 2010-04-29 00:29:06 +1000 (Thu, 29 Apr 2010) | 1 line Issue 7490: make IGNORE_EXCEPTION_DETAIL also ignore details of the module containing the exception under test (original patch by Lennart Regebro) ........