summaryrefslogtreecommitdiffstats
path: root/Misc/ACKS
Commit message (Collapse)AuthorAgeFilesLines
* 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
|
* Patch #808120: Add --force-arch=ARCH to bdist_rpm.py.Martin v. Löwis2004-09-101-0/+1
|
* compiler.transformer: correct lineno attribute when possibleJeremy Hylton2004-09-071-0/+1
| | | | | | | | | | | | | | | | SF patch #1015989 The basic idea of this patch is to compute lineno attributes for all AST nodes. The actual implementation lead to a lot of restructing and code cleanup. The generated AST nodes now have an optional lineno argument to constructor. Remove the top-level asList(), since it didn't seem to serve any purpose. Add an __iter__ to ast nodes. Use isinstance() instead of explicit type tests. Change transformer to use the new lineno attribute, which replaces three lines of code with one. Use universal newlines so that we can get rid of special-case code for line endings. Use lookup_node() in a few more frequently called, but simple com_xxx methods(). Change string exception to class exception.
* SF patch 936813: fast modular exponentiationTim Peters2004-08-291-0/+1
| | | | | | | | | | | | | | | | | | This checkin is adapted from part 1 (of 3) of Trevor Perrin's patch set. x_mul() - sped a little by optimizing the C - sped a lot (~2X) if it's doing a square; note that long_pow() squares often k_mul() - more cache-friendly now if it's doing a square KARATSUBA_CUTOFF - boosted; gradeschool mult is quicker now, and it may have been too low for many platforms anyway KARATSUBA_SQUARE_CUTOFF - new - since x_mul is a lot faster at squaring now, the point at which Karatsuba pays for squaring is much higher than for general mult
* Patch #914575: difflib side by side diff support, diff.py s/b/s HTML option.Martin v. Löwis2004-08-291-0/+1
|
* Add Nick Coghlan for his patch solving an issue with joining stringRaymond Hettinger2004-08-231-0/+1
| | | | subclasses.
* Add nameAndrew M. Kuchling2004-08-071-0/+1
|
* notes for @decoratorAnthony Baxter2004-08-021-0/+1
|
* New codec: [ 996067 ] hp-roman8 codecMarc-André Lemburg2004-07-281-0/+1
|
* Patch #998149: imaplib deleteacl and myrights.Martin v. Löwis2004-07-271-0/+1
|
* Patch #605370: Add description[s] for RFC 2980 compliance.Martin v. Löwis2004-07-261-0/+1
|
* Add itemAndrew M. Kuchling2004-07-101-0/+1
|
* Add note about closing of bug #679953 and add Jimmy Burgett for helping out toBrett Cannon2004-07-101-0/+1
| | | | Misc/ACKS.
* This closes patch:Michael W. Hudson2004-07-071-0/+1
| | | | | | | | | | | | | | | | | [ 960406 ] unblock signals in threads although the changes do not correspond exactly to any patch attached to that report. Non-main threads no longer have all signals masked. A different interface to readline is used. The handling of signals inside calls to PyOS_Readline is now rather different. These changes are all a bit scary! Review and cross-platform testing much appreciated.
* [Patch #974633] Check PyObject_MALLOC return for errorAndrew M. Kuchling2004-06-291-0/+1
|
* Fix leak found by Eric Huss.Raymond Hettinger2004-06-251-0/+1
|
* SF patch 876130: add C API to datetime module, from Anthony Tuininga.Tim Peters2004-06-201-0/+1
| | | | | | The LaTeX is untested (well, so is the new API, for that matter). Note that I also changed NULL to get spelled consistently in concrete.tex. If that was a wrong thing to do, Fred should yell at me.
* shutil.move() will raise an exception when trying to move a directory intoBrett Cannon2004-06-191-0/+1
| | | | | | itself. Closes bug #919012 . Thanks Johannes Gijsbers.
* pydoc.stripid() is now case-insensitive for its regex to support platforms thatBrett Cannon2004-06-191-0/+1
| | | | | | have pointer addresses in uppercase. Closes bug #934282. Thanks Robin Becker.
* Add a final permutation step to the tuple hash function.Raymond Hettinger2004-06-101-0/+1
| | | | | Prevents a collision pattern that occurs with nested tuples. (Yitz Gale provided code that repeatably demonstrated the weakness.)
* Add a name (old change sitting in my tree)Andrew M. Kuchling2004-06-021-0/+1
|
* SF patch #872326: Generator expression implementationRaymond Hettinger2004-05-191-0/+1
| | | | | | | | | | | | | | (Code contributed by Jiwon Seo.) The documentation portion of the patch is being re-worked and will be checked-in soon. Likewise, PEP 289 will be updated to reflect Guido's rationale for the design decisions on binding behavior (as described in in his patch comments and in discussions on python-dev). The test file, test_genexps.py, is written in doctest format and is meant to exercise all aspects of the the patch. Further additions are welcome from everyone. Please stress test this new feature as much as possible before the alpha release.
* ...for work done at PyCon 2004 (and beyond...)Nicholas Bastin2004-03-231-0/+1
|