| Commit message (Expand) | Author | Age | Files | Lines |
* | Simplify Counter() API. Replace items keyword argument | Raymond Hettinger | 2009-01-13 | 1 | -4/+4 |
|
|
* | #3720: Interpreter crashes when an evil iterator removes its own next function. | Amaury Forgeot d'Arc | 2009-01-12 | 2 | -53/+22 |
|
|
* | Issue 1696199: Add collections.Counter(). | Raymond Hettinger | 2009-01-12 | 1 | -2/+98 |
|
|
* | Add tests for invalid format specifiers in strftime, and for handling of inva... | Kristján Valur Jónsson | 2009-01-12 | 2 | -1/+59 |
|
|
* | Issue 4879: Allow buffering for HTTPResponse | Kristján Valur Jónsson | 2009-01-11 | 1 | -1/+1 |
|
|
* | Remove an unnecessary check from test_decimal. | Mark Dickinson | 2009-01-10 | 1 | -1/+0 |
|
|
* | Issue #3860: GzipFile and BZ2File now support the context manager protocol. | Antoine Pitrou | 2009-01-10 | 2 | -1/+43 |
|
|
* | Issue 4293: Make Py_AddPendingCall() thread safe | Kristján Valur Jónsson | 2009-01-09 | 1 | -0/+67 |
|
|
* | Forward port r68394 for issue 4816. | Raymond Hettinger | 2009-01-08 | 1 | -9/+33 |
|
|
* | Use shutil.rmtree rather than os.rmdir. | Antoine Pitrou | 2009-01-06 | 1 | -1/+1 |
|
|
* | Issue #1180193: When importing a module from a .pyc (or .pyo) file with | Antoine Pitrou | 2009-01-06 | 1 | -1/+93 |
|
|
* | Issue #4272: Add an optional argument to the GzipFile constructor to override... | Antoine Pitrou | 2009-01-04 | 1 | -0/+62 |
|
|
* | Manually merge r68095,68186,68187,68188,68190 from 2.6 branch. | Georg Brandl | 2009-01-03 | 1 | -0/+2 |
|
|
* | Issue 4796: Add from_float methods to the decimal module. | Raymond Hettinger | 2009-01-03 | 1 | -0/+49 |
|
|
* | Issue #4615. Document how to use itertools for de-duping. | Raymond Hettinger | 2009-01-02 | 1 | -0/+36 |
|
|
* | Fix for issue1594 | Ronald Oussoren | 2009-01-02 | 1 | -0/+55 |
|
|
* | fill in actual issue number in tests | Antoine Pitrou | 2009-01-01 | 3 | -3/+3 |
|
|
* | Issue #3680: Reference cycles created through a dict, set or deque iterator d... | Antoine Pitrou | 2009-01-01 | 3 | -4/+48 |
|
|
* | #4228: Pack negative values the same way as 2.4 | Georg Brandl | 2009-01-01 | 1 | -0/+7 |
|
|
* | Issue #4701: implicitly call PyType_Ready from PyObject_Hash | Nick Coghlan | 2008-12-30 | 1 | -1/+24 |
|
|
* | #4764 in io.open, set IOError.filename when trying to open a directory on POS... | Benjamin Peterson | 2008-12-29 | 1 | -0/+1 |
|
|
* | #4764 set IOError.filename when trying to open a directory on POSIX platforms | Benjamin Peterson | 2008-12-29 | 1 | -0/+13 |
|
|
* | Issue #4444: Allow assertRaises() to be used as a context handler. | Antoine Pitrou | 2008-12-28 | 1 | -0/+37 |
|
|
* | Backport r67974: | Georg Brandl | 2008-12-28 | 1 | -0/+10 |
|
|
* | #4748 lambda generators shouldn't return values | Benjamin Peterson | 2008-12-27 | 1 | -0/+10 |
|
|
* | Issue #4756: zipfile.is_zipfile() now supports file-like objects. | Antoine Pitrou | 2008-12-27 | 1 | -5/+34 |
|
|
* | Fix bogus unicode tests in pickletester. | Alexandre Vassalotti | 2008-12-27 | 1 | -2/+2 |
|
|
* | Fix issue #4730: cPickle corrupts high-unicode strings. | Alexandre Vassalotti | 2008-12-27 | 1 | -2/+9 |
|
|
* | Issue #4740: Use HIGHEST_PROTOCOL in pickle test. | Hirokazu Yamamoto | 2008-12-27 | 3 | -6/+6 |
|
|
* | #4736 BufferRWPair.closed shouldn't try to call another property as a function | Benjamin Peterson | 2008-12-24 | 1 | -1/+2 |
|
|
* | As a result of a regression that snuck into 2.5.3 add a test case that | Skip Montanaro | 2008-12-23 | 1 | -0/+2 |
|
|
* | add py3k warnings to frame.f_exc_* | Benjamin Peterson | 2008-12-22 | 1 | -0/+10 |
|
|
* | Issue #3439: add bit_length method to int and long. | Mark Dickinson | 2008-12-17 | 2 | -0/+72 |
|
|
* | Issue #2183: Simplify and optimize bytecode for list comprehensions. | Antoine Pitrou | 2008-12-17 | 1 | -20/+16 |
|
|
* | #3954: Fix error handling code in _hotshot.logreader | Amaury Forgeot d'Arc | 2008-12-15 | 1 | -0/+6 |
|
|
* | Issue #4197: Fix the remaining part of the doctest-in-zipfile problem by givi... | Nick Coghlan | 2008-12-15 | 1 | -0/+29 |
|
|
* | modify other occurrence of test_bad_address | Antoine Pitrou | 2008-12-15 | 1 | -1/+1 |
|
|
* | try to fix failure in test_bad_address on some buildbots | Antoine Pitrou | 2008-12-14 | 1 | -1/+1 |
|
|
* | Backport r67759 (fix io.IncrementalNewlineDecoder for UTF-16 et al.). | Antoine Pitrou | 2008-12-14 | 1 | -41/+73 |
|
|
* | Add file that was missed from r67750 | Nick Coghlan | 2008-12-14 | 1 | -0/+203 |
|
|
* | Fix several issues relating to access to source code inside zipfiles. Initial... | Nick Coghlan | 2008-12-14 | 4 | -23/+86 |
|
|
* | Issue #4163: Use unicode-friendly word splitting in the textwrap functions wh... | Antoine Pitrou | 2008-12-13 | 1 | -1/+9 |
|
|
* | Issue #4616: TarFile.utime(): Restore directory times on Windows. | Lars Gustäbel | 2008-12-12 | 1 | -6/+3 |
|
|
* | Issue #4084: Fix max, min, max_mag and min_mag Decimal methods to | Facundo Batista | 2008-12-11 | 1 | -0/+17 |
|
|
* | #4559: When a context manager's __exit__() method returns an object whose | Amaury Forgeot d'Arc | 2008-12-10 | 1 | -0/+30 |
|
|
* | Add simple unittests for Request | Jeremy Hylton | 2008-12-09 | 1 | -1/+47 |
|
|
* | Issue 4597: Fix several cases in EvalFrameEx where an exception could be | Jeffrey Yasskin | 2008-12-08 | 1 | -0/+14 |
|
|
* | Issue #4509: bugs in bytearray with exports (buffer protocol) | Antoine Pitrou | 2008-12-06 | 1 | -0/+32 |
|
|
* | Issue #4445: save 3 bytes (on average, on a typical machine) per | Mark Dickinson | 2008-12-05 | 1 | -2/+2 |
|
|
* | #4529: fix parser's validation for try-except-finally statements. | Georg Brandl | 2008-12-05 | 1 | -0/+10 |
|
|