| Commit message (Expand) | Author | Age | Files | Lines |
* | Add test suite for cmd module. | Georg Brandl | 2007-12-01 | 1 | -0/+186 |
|
|
* | Issue #1531: Read fileobj from the current offset, do not seek to | Lars Gustäbel | 2007-12-01 | 1 | -0/+32 |
|
|
* | Feature #1534 | Christian Heimes | 2007-12-01 | 1 | -0/+2 |
|
|
* | Backport of -r59242:59246 from py3k | Christian Heimes | 2007-11-30 | 1 | -2/+6 |
|
|
* | Issue #1521: on 64bit platforms, str.decode fails on very long strings. | Amaury Forgeot d'Arc | 2007-11-30 | 1 | -4/+6 |
|
|
* | Issue #1402: PyInterpreterState_Clear() may still invoke user code | Amaury Forgeot d'Arc | 2007-11-29 | 1 | -0/+34 |
|
|
* | I forgot to fix one occurence of new in test_descr | Christian Heimes | 2007-11-27 | 1 | -1/+1 |
|
|
* | Patch # 1507 by Mark Dickinson. Make complex(x, -0) retain the sign of | Guido van Rossum | 2007-11-27 | 1 | -0/+13 |
|
|
* | Replaced import of the 'new' module with 'types' module and added a deprecati... | Christian Heimes | 2007-11-27 | 6 | -72/+43 |
|
|
* | Issue #1445: Fix a SystemError when accessing the ``cell_contents`` | Amaury Forgeot d'Arc | 2007-11-24 | 1 | -0/+12 |
|
|
* | Test cases from Cowlishaw, v2.57. All are pased cleanly. | Facundo Batista | 2007-11-23 | 142 | -160/+510 |
|
|
* | Major change in the internal structure of the Decimal | Facundo Batista | 2007-11-23 | 1 | -0/+1 |
|
|
* | 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 | 5 | -6/+225 |
|
|
* | 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 | 1 | -0/+17 |
|
|
* | 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 | 1 | -2/+12 |
|
|
* | 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 | 1 | -0/+44 |
|
|
* | 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 |
|
|
* | Accept Issac Morland's suggestion for __replace__ to allow multiple replacements | Raymond Hettinger | 2007-11-15 | 1 | -1/+1 |
|
|
* | Add test for __fields__ being read-only | Raymond Hettinger | 2007-11-14 | 1 | -0/+8 |
|
|
* | 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 |
|
|
* | 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 | 1 | -5/+159 |
|
|
* | Add a missing quotation mark. | Brett Cannon | 2007-11-03 | 1 | -1/+1 |
|
|
* | Fix for bug 1705170 - contextmanager swallowing StopIteration (2.5 backport c... | Nick Coghlan | 2007-11-02 | 1 | -0/+17 |
|
|
* | 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 |
|
|
* | Enable platform-specific tweaks for FreeBSD 8 (exactly same to FreeBSD 7's yet) | Hye-Shik Chang | 2007-10-28 | 3 | -2/+3 |
|
|
* | Shorter name for namedtuple() | Raymond Hettinger | 2007-10-23 | 1 | -17/+17 |
|
|
* | Add phuang patch from Issue 708374 which adds offset parameter to mmap module. | Travis E. Oliphant | 2007-10-23 | 1 | -0/+44 |
|
|
* | Remove duplicate crasher. | Georg Brandl | 2007-10-21 | 1 | -8/+0 |
|
|
* | Add a crasher for the long-standing issue with closing a file | Armin Rigo | 2007-10-21 | 1 | -0/+14 |
|
|
* | The constructor from tuple was way too permissive: it allowed bad | Facundo Batista | 2007-10-19 | 1 | -0/+27 |
|
|
* | Issue #1580738. When HTTPConnection reads the whole stream with read(), | Facundo Batista | 2007-10-18 | 1 | -2/+13 |
|
|
* | Fix the overflow checking of list_repeat. | Armin Rigo | 2007-10-17 | 1 | -0/+9 |
|
|