summaryrefslogtreecommitdiffstats
path: root/Misc/ACKS
Commit message (Collapse)AuthorAgeFilesLines
* #1638033: add support for httponly on Cookie.MorselBenjamin Peterson2008-09-061-0/+1
| | | | Reviewer: Benjamin
* Keep sorted.Georg Brandl2008-07-161-3/+3
|
* Add Victor Stinner, he provided the patch for issue #3313.Thomas Heller2008-07-151-0/+1
|
* #1778443 robotparser fixes from Aristotelis MikropoulosBenjamin Peterson2008-07-121-0/+1
|
* Add missing NEWS and ACK entries for r64791Nick Coghlan2008-07-081-0/+1
|
* Add Jean Brouwers for his work on math.sumMark Dickinson2008-06-271-0/+1
|
* platform.uname now tries to fill empty values even when os.uname is presentBenjamin Peterson2008-06-131-0/+1
|
* update ACKS and NEWs for multiprocessingBenjamin Peterson2008-06-111-0/+2
|
* Add Arnaud for his efforts on multi-arg set operations.Raymond Hettinger2008-06-101-0/+1
|
* Add the "ast" module, containing helpers to ease use of the "_ast" classes.Georg Brandl2008-06-101-0/+1
|
* Patch #1513695: New turtle module, with demos.Martin v. Löwis2008-06-041-0/+1
|
* Add Quentin Gallet-Gilles for (at least) a fixer for markupbase.Brett Cannon2008-05-221-0/+1
|
* Add GHOP students.Georg Brandl2008-05-181-0/+3
|
* Add the "until" command to pdbBenjamin Peterson2008-05-111-0/+1
|
* #1858: re-apply patch for this, adding the missing filesAndrew M. Kuchling2008-05-111-0/+1
|
* Revert r62998 as it broke the build (seems distutils.config is missing).Brett Cannon2008-05-101-1/+0
|
* #1858 from Tarek Ziade:Andrew M. Kuchling2008-05-101-0/+1
| | | | | | | | | Allow multiple repositories in .pypirc; see http://wiki.python.org/moin/EnhancedPyPI for discussion. The patch is slightly revised from Tarek's last patch: I've simplified the PyPIRCCommand.finalize_options() method to not look at sys.argv. Tests still pass.
* Accept patch issue2426 by Paul Kippes (kippesp).Gregory P. Smith2008-03-281-0/+1
| | | | Adds sqlite3.Connection.iterdump to allow dumping of databases.
* add commas for introductory clausesBenjamin Peterson2008-03-271-2/+2
|
* Opps! I merged the revisions, but forgot to addBenjamin Peterson2008-03-251-0/+11
| | | | the header to ACKS
* Merged the ACKS from py3kBenjamin Peterson2008-03-251-62/+58
|
* Patch #2240: Implement signal.setitimer and signal.getitimer.Martin v. Löwis2008-03-241-0/+1
|
* Added my name to ACKSDavid Wolever2008-03-191-0/+1
|
* Backport of the print function, using a __future__ import.Eric Smith2008-03-181-0/+1
| | | | | | | | This work is substantially Anthony Baxter's, from issue 1633807. I just freshened it, made a few minor tweaks, and added the test cases. I also created issue 2412, which is to check for 2to3's behavior with the print function. I also added myself to ACKS.
* - Issue #2371: Add a Py3k warning when catching an exception thatGuido van Rossum2008-03-181-0/+1
| | | | doesn't derive from BaseException.
* Move test_gdbm to use unittest.Brett Cannon2008-03-131-0/+1
| | | | Closes issue #1960. Thanks Giampaolo Rodola.
* Convert test_contains, test_crypt, and test_select to unittest.Brett Cannon2008-03-131-0/+1
| | | | Patch from GHOP 294 by David Marek.
* Move test_tokenize to doctest.Brett Cannon2008-03-131-0/+1
| | | | Done as GHOP 238 by Josip Dzolonga.
* Refactor test_logging to use unittest. This should finally solve the flakinessBrett Cannon2008-03-031-0/+1
| | | | | | issues. Thanks to Antoine Pitrou for the patch.
* #1433694: minidom's .normalize() failed to set .nextSibling for last element.Andrew M. Kuchling2008-02-231-0/+1
| | | | Fix by Malte Helmert
* Move test_logging over to doctest.Brett Cannon2008-02-171-0/+1
| | | | Thanks to Christopher White from GHOP.
* Rewrite test_queue as unittest. Written for GHOP by Ian Seyer.Georg Brandl2008-02-021-0/+1
|
* Add GHOP contributor.Georg Brandl2008-02-021-0/+1
|
* Patch #1048820 from Stefan Wehr: add insert-mode editing to Textbox.Andrew M. Kuchling2008-01-201-0/+1
| | | | Fix an off-by-one error I noticed.
* Patch #1019808 from Federico Schwindt: Return correct socket error whenAndrew M. Kuchling2008-01-191-0/+1
| | | | | | | | a default timeout has been set, by using getsockopt() to get the error condition (instead of trying another connect() call, which seems to be a Linuxism). 2.5 bugfix candidate, assuming no one reports any problems with this change.
* Patch #976880: add mmap .rfind() method, and 'end' paramter to .find().Andrew M. Kuchling2008-01-191-0/+1
| | | | Contributed by John Lenton.
* Sort two names into positionAndrew M. Kuchling2008-01-191-2/+2
|
* Patch #742598 from Michael Pomraning: add .timeout attribute to SocketServer ↵Andrew M. Kuchling2008-01-191-0/+1
| | | | | | that will call .handle_timeout() method when no requests are received within the timeout period.
* Temporarily revert 59967 until GC can be added.Raymond Hettinger2008-01-151-1/+0
|
* 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.