| Commit message (Expand) | Author | Age | Files | Lines |
* | Issue #16761: Raise TypeError when int() or long() called with base argument ... | Serhiy Storchaka | 2012-12-28 | 2 | -2/+14 |
|
|
* | Issue #16602: When a weakref's target was part of a long deallocation chain, ... | Antoine Pitrou | 2012-12-08 | 1 | -3/+2 |
|
|
* | Issue #9742: Sneaky fix for build failure on Solaris 9. | Mark Dickinson | 2012-11-17 | 1 | -0/+9 |
|
|
* | Issue #15379: Fix passing of non-BMP characters as integers for the charmap d... | Antoine Pitrou | 2012-11-17 | 1 | -2/+26 |
|
|
* | Issue #16453: Fix equality testing of dead weakref objects. | Antoine Pitrou | 2012-11-11 | 1 | -4/+8 |
|
|
* | Fix compilation on Windows | Christian Heimes | 2012-11-03 | 1 | -1/+1 |
|
|
* | #8401: assigning an int to a bytearray slice (e.g. b[3:4] = 5) now raises an ... | Ezio Melotti | 2012-11-03 | 1 | -0/+6 |
|
|
* | avoid a function call with redundant checks for dict size | Benjamin Peterson | 2012-10-31 | 1 | -1/+1 |
|
|
* | only fast-path fromkeys() when the constructor returns a empty dict (closes #... | Benjamin Peterson | 2012-10-31 | 1 | -33/+34 |
|
|
* | initialize more global type objects (closes #16369) | Benjamin Peterson | 2012-10-31 | 2 | -0/+18 |
|
|
* | Issue #14700: Fix buggy overflow checks for large precision and width in new-... | Mark Dickinson | 2012-10-28 | 4 | -22/+17 |
|
|
* | Issue #14783: Backport changes from 3.2. | Chris Jerdonek | 2012-10-08 | 6 | -20/+34 |
|
|
* | Issues #16029, #16030: Fix pickling and repr of large xranges. | Mark Dickinson | 2012-09-28 | 1 | -5/+29 |
|
|
* | Fixed memory leak in error branch of object_repr which may leak a reference t... | Christian Heimes | 2012-09-10 | 1 | -1/+3 |
|
|
* | Fixed possible reference leak to mod when type_name() returns NULL | Christian Heimes | 2012-09-10 | 1 | -1/+3 |
|
|
* | PyTuple_Pack() was missing va_end() in its error branch which lead to a resou... | Christian Heimes | 2012-09-10 | 1 | -1/+3 |
|
|
* | Issue #13992: The trashcan mechanism is now thread-safe. This eliminates | Antoine Pitrou | 2012-09-05 | 2 | -0/+42 |
|
|
* | use the stricter PyMapping_Check (closes #15801) | Benjamin Peterson | 2012-08-28 | 2 | -2/+2 |
|
|
* | Issue #15604: Update uses of PyObject_IsTrue() to check for and handle errors... | Antoine Pitrou | 2012-08-15 | 1 | -5/+7 |
|
|
* | Issue #14579: Fix error handling bug in the utf-16 decoder. | Antoine Pitrou | 2012-07-20 | 1 | -1/+1 |
|
|
* | allow any number to be returned from __length_hint__ (closes #15354) | Benjamin Peterson | 2012-07-15 | 1 | -1/+1 |
|
|
* | Fixes issue #12268 for file readline, readlines and read() and readinto methods. | Gregory P. Smith | 2012-06-26 | 1 | -4/+61 |
|
|
* | Improve tooltips for splitlines() by showing that the default for keepends is... | Raymond Hettinger | 2012-06-02 | 3 | -3/+3 |
|
|
* | Issue #8767: Restore building with --disable-unicode. | Martin v. Löwis | 2012-05-20 | 1 | -0/+2 |
|
|
* | fix possible refleak (closes #14752) | Benjamin Peterson | 2012-05-08 | 1 | -2/+4 |
|
|
* | close() doesn't take any args (closes #14717) | Benjamin Peterson | 2012-05-03 | 1 | -1/+1 |
|
|
* | use formats that work on 2.7 | Benjamin Peterson | 2012-05-01 | 1 | -7/+6 |
|
|
* | fix calling the classmethod descriptor directly (closes #14699) | Benjamin Peterson | 2012-05-01 | 1 | -3/+41 |
|
|
* | don't use a slot wrapper from a different special method (closes #14658) | Benjamin Peterson | 2012-04-24 | 1 | -2/+3 |
|
|
* | SETUP_WITH acts like SETUP_FINALLY for the purposes of setting f_lineno (clos... | Benjamin Peterson | 2012-04-18 | 1 | -2/+4 |
|
|
* | merge 2.7 release branch | Benjamin Peterson | 2012-04-09 | 2 | -0/+4 |
|\ |
|
| * | fix build without Py_DEBUG and DNDEBUG (closes #14509) | Benjamin Peterson | 2012-04-09 | 2 | -0/+4 |
|
|
* | | Issue #14505: Fix file descriptor leak when deallocating file objects created... | Antoine Pitrou | 2012-04-05 | 1 | -1/+2 |
|
|
* | | Issue #13019: Fix potential reference leaks in bytearray.extend(). | Antoine Pitrou | 2012-04-01 | 1 | -2/+6 |
|
|
* | | kill this terribly outdated comment | Benjamin Peterson | 2012-03-26 | 1 | -4/+0 |
|
|
* | | check for string attribute names in old-style classes (closes #14334) | Benjamin Peterson | 2012-03-16 | 1 | -3/+27 |
|
|
* | | check to make sure the attribute is a string (#14334) | Benjamin Peterson | 2012-03-16 | 1 | -0/+7 |
|
|
* | | #14161: fix compile error under Windows. | Ezio Melotti | 2012-03-11 | 1 | -1/+2 |
|
|
* | | #14161: fix the __repr__ of file objects to escape the file name. | Ezio Melotti | 2012-03-11 | 1 | -4/+10 |
|
|
* | | allow cycles throught the __dict__ slot to be cleared (closes #1469629) | Benjamin Peterson | 2012-03-08 | 1 | -2/+7 |
|
|
* | | Issue #13521: dict.setdefault() now does only one lookup for the given key, m... | Antoine Pitrou | 2012-02-26 | 1 | -44/+69 |
|/ |
|
* | merge 2.6 | Benjamin Peterson | 2012-02-21 | 2 | -0/+2 |
|\ |
|
| * | ensure no one tries to hash things before the random seed is found | Benjamin Peterson | 2012-02-21 | 2 | -0/+2 |
|
|
* | | merge 2.6 with hash randomization fix | Benjamin Peterson | 2012-02-21 | 4 | -3/+35 |
|\ \
| |/ |
|
| * | - Issue #13703: oCERT-2011-003: add -R command-line option and PYTHONHASHSEED | Barry Warsaw | 2012-02-21 | 4 | -3/+35 |
|
|
| * | Merged revisions 83354,83365 via svnmerge from | Georg Brandl | 2010-08-01 | 1 | -2/+2 |
|
|
| * | Merged revisions 83452,83457,83466,83471,83475,83480,83486 via svnmerge from | Georg Brandl | 2010-08-01 | 1 | -4/+2 |
|
|
| * | Merged revisions 82980 via svnmerge from | Stefan Krah | 2010-07-19 | 1 | -1/+1 |
|
|
| * | Merged revisions 81758-81759 via svnmerge from | Ezio Melotti | 2010-07-03 | 1 | -63/+56 |
|
|
| * | Merged revisions 82447 via svnmerge from | Benjamin Peterson | 2010-07-02 | 1 | -1/+1 |
|
|