| Commit message (Expand) | Author | Age | Files | Lines |
* | Fix a bug in the test for using __loader__.get_data(). | Brett Cannon | 2007-11-23 | 1 | -0/+1 |
|
|
* | Backport of _abccoll.py by Benjamin Arangueren, issue 1383. | Guido van Rossum | 2007-11-22 | 8 | -7/+776 |
|
|
* | Add a missing check before deleting a package's __loader__. | Brett Cannon | 2007-11-21 | 1 | -1/+2 |
|
|
* | doctest assumed that a package's __loader__.get_data() method used universal | Brett Cannon | 2007-11-21 | 2 | -1/+21 |
|
|
* | Remove a unneeded line that had typos. | Brett Cannon | 2007-11-21 | 1 | -2/+0 |
|
|
* | The incremental decoder for utf-7 must preserve its state between calls. | Amaury Forgeot d'Arc | 2007-11-20 | 2 | -15/+22 |
|
|
* | Another fix for test_shutil. Martin pointed out that it breaks some build bots | Christian Heimes | 2007-11-20 | 1 | -1/+3 |
|
|
* | Fixed bug #1470 | Christian Heimes | 2007-11-20 | 1 | -5/+2 |
|
|
* | Fix the OSX failures in this test -- they were due to /tmp being a symlink | Guido van Rossum | 2007-11-19 | 1 | -0/+1 |
|
|
* | Make this work stand-alone, too. | Guido van Rossum | 2007-11-19 | 1 | -1/+1 |
|
|
* | Enable some test_cmd_line_script debugging output to investigate failure on M... | Nick Coghlan | 2007-11-19 | 1 | -3/+3 |
|
|
* | Fix for #1444: utf_8_sig.StreamReader was (indirectly through decode()) | Walter Dörwald | 2007-11-19 | 2 | -5/+55 |
|
|
* | Fix typo in comment. | Walter Dörwald | 2007-11-19 | 1 | -1/+1 |
|
|
* | Patch #1739468: Directories and zipfiles containing __main__.py are now execu... | Nick Coghlan | 2007-11-18 | 2 | -0/+148 |
|
|
* | Now in find, rfind, index, and rindex, you can use None as defaults, | Facundo Batista | 2007-11-16 | 1 | -0/+28 |
|
|
* | add the certificate for the Python SVN repository for testing SSL | Bill Janssen | 2007-11-15 | 1 | -0/+31 |
|
|
* | Small improvement to the implementation of __replace__(). | Raymond Hettinger | 2007-11-15 | 1 | -1/+1 |
|
|
* | Accept Issac Morland's suggestion for __replace__ to allow multiple replacements | Raymond Hettinger | 2007-11-15 | 2 | -5/+9 |
|
|
* | Add test for __fields__ being read-only | Raymond Hettinger | 2007-11-14 | 1 | -0/+8 |
|
|
* | Make __fields__ read-only. Suggested by Issac Morland | Raymond Hettinger | 2007-11-14 | 1 | -1/+1 |
|
|
* | Merge from py3k branch: | Amaury Forgeot d'Arc | 2007-11-13 | 1 | -2/+47 |
|
|
* | Add the test from issue 1704621 (the issue itself is already fixed here). | Guido van Rossum | 2007-11-12 | 1 | -0/+7 |
|
|
* | Fix TextCalendar.prweek(). This closes issue #1427. | Walter Dörwald | 2007-11-12 | 1 | -1/+1 |
|
|
* | Fix for #1427: Error in standard module calendar | Christian Heimes | 2007-11-12 | 1 | -8/+12 |
|
|
* | Fixed a bug reported (in private email, by Robert Crida) in logging configura... | Vinay Sajip | 2007-11-11 | 1 | -3/+27 |
|
|
* | Issue 1416. Add getter, setter, deleter methods to properties that can be | Guido van Rossum | 2007-11-10 | 1 | -0/+65 |
|
|
* | Correct a comment about testing methods - nowadays most | Georg Brandl | 2007-11-09 | 1 | -4/+3 |
|
|
* | Add set.isdisjoint() | Raymond Hettinger | 2007-11-08 | 1 | -2/+47 |
|
|
* | Optimize dict.fromkeys() with dict inputs. Useful for resetting bag/muliset ... | Raymond Hettinger | 2007-11-07 | 1 | -0/+4 |
|
|
* | Fix marshal's incorrect handling of subclasses of builtin types (backport can... | Raymond Hettinger | 2007-11-07 | 1 | -0/+11 |
|
|
* | Fixes Issue 1385: The hmac module now computes the correct hmac when using | Gregory P. Smith | 2007-11-06 | 2 | -7/+177 |
|
|
* | * db->get_flags is only available in BerkeleyDB >= 4.2 | Gregory P. Smith | 2007-11-05 | 1 | -0/+4 |
|
|
* | Add the bsddb.db.DBEnv.lock_id_free method. | Gregory P. Smith | 2007-11-05 | 1 | -14/+12 |
|
|
* | Fixes bug 477182 on pybsddb.sf.net. DB objects now load the flags and | Gregory P. Smith | 2007-11-05 | 1 | -0/+24 |
|
|
* | Add a missing quotation mark. | Brett Cannon | 2007-11-03 | 1 | -1/+1 |
|
|
* | Enable the full ctypes c_longdouble tests again. | Thomas Heller | 2007-11-02 | 2 | -22/+22 |
|
|
* | Fix for bug 1705170 - contextmanager swallowing StopIteration (2.5 backport c... | Nick Coghlan | 2007-11-02 | 2 | -0/+21 |
|
|
* | Undo revision 58533 58534 fixes. Those were a workaround for | Gregory P. Smith | 2007-11-01 | 1 | -3/+2 |
|
|
* | Fix bug introduced in revision 58385. Database keys could no longer | Gregory P. Smith | 2007-11-01 | 1 | -4/+21 |
|
|
* | Removed non ASCII text from test as requested by Guido. Sorry :/ | Christian Heimes | 2007-11-01 | 1 | -20/+2 |
|
|
* | Backport of import tests for bug http://bugs.python.org/issue1293 and bug htt... | Christian Heimes | 2007-11-01 | 1 | -2/+43 |
|
|
* | check in Tal Einat's update to tabpage.py | Kurt B. Kaiser | 2007-10-30 | 3 | -9/+489 |
|
|
* | Patch 1353 by Jacob Winther. | Guido van Rossum | 2007-10-29 | 1 | -0/+1 |
|
|
* | Add confirmation dialog before printing. Patch 1717170 Tal Einat. | Kurt B. Kaiser | 2007-10-28 | 2 | -1/+13 |
|
|
* | Enable platform-specific tweaks for FreeBSD 8 (exactly same to FreeBSD 7's yet) | Hye-Shik Chang | 2007-10-28 | 4 | -3/+4 |
|
|
* | - Add support for FreeBSD 8 which is recently forked from FreeBSD 7. | Hye-Shik Chang | 2007-10-28 | 4 | -24/+670 |
|
|
* | Fix new pop() method on os.environ on ignorecase-platforms. | Georg Brandl | 2007-10-26 | 1 | -1/+1 |
|
|
* | 1. Add comments to provide top-level documentation. | Kurt B. Kaiser | 2007-10-26 | 1 | -30/+68 |
|
|
* | Correct an ancient bug in an unused path by removing that path: register() is | Kurt B. Kaiser | 2007-10-25 | 1 | -5/+1 |
|
|
* | Bug #1287: make os.environ.pop() work as expected. | Georg Brandl | 2007-10-24 | 1 | -0/+6 |
|
|