summaryrefslogtreecommitdiffstats
path: root/Misc/ACKS
Commit message (Collapse)AuthorAgeFilesLines
* Issue 1820: structseq objects did not work with the % formatting operator ↵Raymond Hettinger2008-01-151-0/+1
| | | | | | or isinstance(t, tuple). Orignal patch (without tests) by Leif Walsh.
* Patch 1137: allow assigning to .buffer_size attribute of PyExpat.parser objectsAndrew M. Kuchling2008-01-081-0/+1
|
* Add John Nagle (of issue #1637).Guido van Rossum2008-01-051-0/+1
|
* Patch #1608. Someone with access to autoconf 2.61 or higher needs toGuido van Rossum2007-12-131-0/+1
| | | | run it and check in the resulting configure file.
* Patch #1643738 by Ulisses Furquim -- make the is_tripped variableGuido van Rossum2007-12-101-0/+1
| | | | | in signalmodule.c more robust. Includes Martin von Loewis's suggestion to set is_tripped after .tripped.
* Add Jeff Wheeler.Georg Brandl2007-12-091-0/+1
|
* Fix Eren's name.Georg Brandl2007-12-081-1/+1
|
* Increase unit test coverage of SimpleXMLRPCServer.Georg Brandl2007-12-071-0/+1
| | | | Written for GHOP by Turkay Eren.
* Issue #1727780: Support loading pickles of random.Random objects createdMartin v. Löwis2007-12-031-0/+1
| | | | | | on 32-bit systems on 64-bit systems, and vice versa. As a consequence of the change, Random pickles created by Python 2.6 cannot be loaded in Python 2.5.
* Add test suite for cmd module.Georg Brandl2007-12-011-0/+1
| | | | Written by Michael Schneider for GHOP.
* Patch #1031213: Decode source line in SyntaxErrors back to its originalMartin v. Löwis2007-09-041-0/+1
| | | | source encoding. Will backport to 2.5.
* Patch #1388440: Add set_completion_display_matches_hook andMartin v. Löwis2007-09-041-0/+1
| | | | get_completion_type to readline.
* Add Atul Varma for patch # 1667860Neal Norwitz2007-06-111-0/+1
|
* SF 1668596/1720897: distutils now copies data filesNeal Norwitz2007-06-011-0/+1
| | | | | | | | even if package_dir is empty. This needs to be backported. I'm too tired tonight. It would be great if someone backports this if the buildbots are ok with it. Otherwise, I will try to get to it tomorrow.
* Fix bug in marshal where bad data would cause a segfault due toNeal Norwitz2007-05-161-0/+1
| | | | | | lack of an infinite recursion check. Contributed by Damien Miller at Google.
* Add window.chgat() method, submitted via e-mail by Fabian KreutzAndrew M. Kuchling2007-04-111-0/+1
|
* Add Mark Dickinson for SF # 1675423.Neal Norwitz2007-03-231-0/+1
|
* Patch #1630118: add a SpooledTemporaryFile class to tempfile.Collin Winter2007-03-191-0/+1
|
* Patch 1339796: add a relpath() function to os.path.Collin Winter2007-03-161-0/+1
|
* Patch #1623563: allow __class__ assignment for classes with __slots__.Žiga Seilnacht2007-03-161-0/+1
| | | | | The old and the new class are still required to have the same slot names, but the order in which they are specified is not relevant.
* Patch #1533909: the timeit module now accepts callables in addition toGeorg Brandl2007-03-131-0/+1
| | | | | strings for the code to time and the setup code. Also added two convenience functions for instantiating a Timer and calling its methods.
* Acks for recent patches.Georg Brandl2007-03-131-0/+3
|
* Add acks for recent patch checkins:Collin Winter2007-03-131-0/+6
| | | | | | | | | Arvin Schnell - 1668482 Sébastien Martini - 1481079 Heiko Wundram - 1491866 Damon Kohler - 1545011 Peter Parente - 1599845 Bjorn Lindqvist - 1678662
* Patch #1537850: tempfile.NamedTemporaryFile now has a "delete" parameterGeorg Brandl2007-03-131-0/+1
| | | | | which can be set to False to prevent the default delete-on-close behavior.
* Add some other acks for recent checkins:Neal Norwitz2007-03-131-0/+3
| | | | | | Brian Leair - 922167 Tomer Filiba - 1591665 Jeremy Jones - 1192590
* Add Jerry Seutter for a bunch of his recent patches refactoring testsNeal Norwitz2007-03-131-0/+1
|
* Patch #1490190: posixmodule now includes os.chflags() and os.lchflags()Martin v. Löwis2007-02-191-0/+1
| | | | functions on platforms where the underlying system calls are available.
* Patch #1635058 by Mark Roberts: ensure that htonl and friends never accept orGuido van Rossum2007-01-141-0/+1
| | | | return negative numbers, per the underlying C implementation.
* [Rest of patch #1182394] Add ._current() method so that we can use the ↵Andrew M. Kuchling2006-12-271-0/+1
| | | | written-in-C .hexdigest() method
* Patch #1567274: Support SMTP over TLS.Martin v. Löwis2006-10-271-0/+1
|
* Patch #1549049: Rewrite type conversion in structmember.Martin v. Löwis2006-10-271-0/+1
| | | | Fixes #1545696 and #1566140. Will backport to 2.5.
* Fix SF bug #1545837: array.array borks on deepcopy.Thomas Wouters2006-08-241-0/+1
| | | | | array.__deepcopy__() needs to take an argument, even if it doesn't actually use it. Will backport to 2.5 and 2.4 (if applicable.)
* Patch #1541585: fix buffer overrun when performing repr() onNeal Norwitz2006-08-211-0/+1
| | | | | | a unicode string in a build with wide unicode (UCS-4) support. This code could be improved, so add an XXX comment.
* Add Chris McDonough (latest cgi.py patch)Georg Brandl2006-08-111-0/+1
|
* Patch #1519025 and bug #926423: If a KeyboardInterrupt occurs duringNeal Norwitz2006-08-021-0/+1
| | | | | a socket operation on a socket with a timeout, the exception will be caught correctly. Previously, the exception was not caught.
* Patch #1531113: Fix augmented assignment with yield expressions.Neal Norwitz2006-07-301-0/+1
| | | | Also fix a SystemError when trying to assign to yield expressions.
* Allow socketmodule to compile on NetBSD -current, whose bluetooth APIMatt Fleming2006-07-281-0/+1
| | | | differs from both Linux and FreeBSD. Accepted by Neal Norwitz.
* Patch #1096231: Add default argument to wm_iconbitmap.Martin v. Löwis2006-06-171-0/+1
|
* SF patch 1504676: Make sgmllib char and entity references pluggableFred Drake2006-06-161-0/+1
| | | | (implementation/tests contributed by Sam Ruby)
* Patch #1503046, Conditional compilation of zlib.(de)compressobj.copyNeal Norwitz2006-06-121-0/+1
| | | | | copy is only in newer versions of zlib. This should allow zlibmodule to work with older versions like the Tru64 buildbot.
* Bug #1334662 / patch #1335972: int(string, base) wrong answers.Tim Peters2006-05-231-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | In rare cases of strings specifying true values near sys.maxint, and oddball bases (not decimal or a power of 2), int(string, base) could deliver insane answers. This repairs all such problems, and also speeds string->int significantly. On my box, here are % speedups for decimal strings of various lengths: length speedup ------ ------- 1 12.4% 2 15.7% 3 20.6% 4 28.1% 5 33.2% 6 37.5% 7 41.9% 8 46.3% 9 51.2% 10 19.5% 11 19.9% 12 23.9% 13 23.7% 14 23.3% 15 24.9% 16 25.3% 17 28.3% 18 27.9% 19 35.7% Note that the difference between 9 and 10 is the difference between short and long Python ints on a 32-bit box. The patch doesn't actually do anything to speed conversion to long: the speedup is due to detecting "unsigned long" overflow more quickly. This is a bugfix candidate, but it's a non-trivial patch and it would be painful to separate the "bug fix" from the "speed up" parts.
* Patch #1492356: Port to Windows CE (patch set 1).Martin v. Löwis2006-05-221-0/+1
|
* Bug/Patch #1481770: Use .so extension for shared libraries on HP-UX for ia64.Neal Norwitz2006-05-191-0/+1
| | | | I suppose this could be backported if anyone cares.
* Patch #1488312, Fix memory alignment problem on SPARC in unicode. Will backportNeal Norwitz2006-05-151-0/+1
|
* - Bug #1487966: Fix SystemError with conditional expression in assignmentNeal Norwitz2006-05-151-0/+1
| | | | Most of the test_syntax changes are just updating the numbers.
* SF patch #1473132: Improve docs for tp_clear and tp_traverse,Tim Peters2006-05-121-0/+1
| | | | | | by Collin Winter. Bugfix candidate (but I'm not going to bother).
* SF bug/patch #1433877: string parameter to ioctl not null terminatedThomas Wouters2006-04-251-0/+1
| | | | | | | The new char-array used in ioctl calls wasn't explicitly NUL-terminated; quite probably the cause for the test_pty failures on Solaris that we circumvented earlier. (I wasn't able to reproduce it with this patch, but it has been somewhat elusive to start with.)
* Add Gregory K. Johnson's revised version of mailbox.py (funded byAndrew M. Kuchling2006-04-221-0/+1
| | | | | | | | | | | | | | | | | the 2005 Summer of Code). The revision adds a number of new mailbox classes that support adding and removing messages; these classes also support mailbox locking and default to using email.Message instead of rfc822.Message. The old mailbox classes are largely left alone for backward compatibility. The exception is the Maildir class, which was present in the old module and now inherits from the new classes. The Maildir class's interface is pretty simple, though, so I think it'll be compatible with existing code. (The change to the NEWS file also adds a missing word to a different news item, which unfortunately required rewrapping the line.)
* Python on OS X 10.3 and above now uses dlopen() (via dynload_shlib.c)Anthony Baxter2006-04-091-0/+1
| | | | | | to load extension modules and now provides the dl module. As a result, sys.setdlopenflags() now works correctly on these systems. (SF patch #1454844)
* The email module's parsedate_tz function now sets the daylight savingsAnthony Baxter2006-04-031-0/+1
| | | | | | flag to -1 (unknown) since it can't tell from the date whether it should be set. patch from Aldo Cortesi