summaryrefslogtreecommitdiffstats
path: root/Misc/ACKS
Commit message (Collapse)AuthorAgeFilesLines
* Backport trunk checkin r51565:Thomas Wouters2006-12-291-0/+1
| | | | | Fix SF bug #1545837: array.array borks on deepcopy. array.__deepcopy__() needs to take an argument, even if it doesn't actually use it.
* - 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. I will forward port to 2.6. Can someone backport to 2.4?
* 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
* Patch #1309579: wait3 and wait4 were added to the posix module by Chad J. ↵Neal Norwitz2006-03-201-0/+1
| | | | | | | | Schroeder. This was a fair amount of rework of the patch. Refactored test_fork1 so it could be reused by the new tests for wait3/4. Also made them into new style unittests (derive from unittest.TestCase).
* PEP 343 -- the with-statement.Guido van Rossum2006-02-271-0/+1
| | | | | | | | | | | | | This was started by Mike Bland and completed by Guido (with help from Neal). This still needs a __future__ statement added; Thomas is working on Michael's patch for that aspect. There's a small amount of code cleanup and refactoring in ast.c, compile.c and ceval.c (I fixed the lltrace behavior when EXT_POP is used -- however I had to make lltrace a static global).
* Patch #1422385: Changes to nis module to support multiple NIS domainsMartin v. Löwis2006-02-041-0/+1
|
* Patch #1349118: urllib2 now supports user:pass@ style proxyMartin v. Löwis2006-01-241-0/+1
| | | | | specifications, raises IOErrors when proxies for unsupported protocols are defined, and uses the https proxy on https redirections.
* Alphabetize some names and remove a dupeNeal Norwitz2006-01-141-16/+15
|
* Patch #1103116: AF_NETLINK sockets basic support.Martin v. Löwis2006-01-141-0/+1
|
* Fix SF bug #1402308, segfault when using mmap(-1, ...)Neal Norwitz2006-01-111-0/+1
| | | | | | | This didn't crash on Linux, but valgrind complained. I'm not sure if this test is valid on Windows. Will backport.
* SF bug #1400822, Extended version of _curses over{lay,write} does not workNeal Norwitz2006-01-101-0/+1
| | | | | | Fix signatures to conform to doc (also fixed ungetmouse()). Will backport.
* Add myself.Georg Brandl2006-01-081-0/+1
|
* SF patch #1355913, PEP 341 - Unification of try/except and try/finallyNeal Norwitz2005-12-171-0/+1
| | | | Modified since ast-arenas was implemented.
* Add Michael Urman for work on SF patch #1365916Neal Norwitz2005-12-171-0/+1
|
* Patch #1350409: Port signal handling to VS 2005.Martin v. Löwis2005-11-281-0/+1
|
* Prevent threading.Thread.join() from blocking when a previous call raised anBrett Cannon2005-11-231-0/+1
| | | | | | exception (e.g., passing in an illegal argument). Applies patch #1314396. Thanks Eric Blossom.
* Fix SF #1345263, colorsys tests, bug in frangeNeal Norwitz2005-11-021-0/+1
| | | | | | Fix a typo that caused step to be ignored. Will backport.
* Merge ast-branch to headJeremy Hylton2005-10-201-0/+1
| | | | | | | | | | This change implements a new bytecode compiler, based on a transformation of the parse tree to an abstract syntax defined in Parser/Python.asdl. The compiler implementation is not complete, but it is in stable enough shape to run the entire test suite excepting two disabled tests.
* SF patch #1227568, Expression AST node not documented.Neal Norwitz2005-10-031-0/+1
|
* Patch #1309009, Fix segfault in pyexpat when the XML document isNeal Norwitz2005-09-301-0/+1
| | | | | | in latin_1, but Python incorrectly assumes it is in UTF-8 format Will backport.
* Patches #1298449 and #1298499: Add some missing checks for errorMichael W. Hudson2005-09-221-0/+1
| | | | | | returns in cStringIO.c. Thanks to Andrew Bennetts. This must be a backport candidate.
* credit source of idea for recent doc changesSkip Montanaro2005-05-121-0/+1
|
* Modified test for tzset to not rely on tm->tm_zone's existence. Also addedBrett Cannon2005-02-101-0/+1
| | | | | | sanity checks on tzname if HAVE_TZNAME defined. Closes bug #1096244. Thanks Gregory Bond.
* SF patch #1116583: NameError in cookielib domain checkRaymond Hettinger2005-02-051-0/+1
|
* Add strptime() constructor to datetime class. Thanks to Josh Spoerri forSkip Montanaro2005-01-131-0/+1
| | | | the changes.
* Acknowledge contribution of a thorough tutorial review.Raymond Hettinger2004-12-031-0/+1
|
* SF patch #1077353: add key= argument to min and maxRaymond Hettinger2004-12-031-0/+1
| | | | (First draft of patch contributed by Steven Bethard.)
* SF patch 1062495: Modules/zipimport.c does not compile on solaris ↵Raymond Hettinger2004-11-101-0/+1
| | | | | | (Contributed by Niki W. Waibel.) Simple renaming to avoid a conflict that prevented compilation on Solaris.
* Fix for SF bug 988120 via patch 1061941.Jeremy Hylton2004-11-071-0/+1
| | | | If read() returned less than the number of bytes request, the full amount was subtracted from length instead of the actually read amount.
* Fix minor reST error in Misc/NEWS.Brett Cannon2004-10-221-0/+1
| | | | Applies patch #1051866. Thanks Felix Wiemann.
* Patch 1046644 - improved distutils support for SWIG.Anthony Baxter2004-10-141-0/+1
|
* Patch 983206: distutils obeys LDSHARED env var. Removed the code inAnthony Baxter2004-10-131-0/+1
| | | | | Python's own setup.py that did the same thing (and tested on Solaris, where LDSHARED is needed...)
* 969574Anthony Baxter2004-10-131-0/+1
|
* Patch #1025790: Add status code constants to httplib.Martin v. Löwis2004-09-181-0/+1
|