| Commit message (Expand) | Author | Age | Files | Lines |
* | merge 3.2 (#16369) | Benjamin Peterson | 2012-10-31 | 1 | -0/+24 |
|\ |
|
| * | initialize more global type objects (closes #16369) | Benjamin Peterson | 2012-10-31 | 1 | -0/+24 |
|
|
| * | Issue #13992: The trashcan mechanism is now thread-safe. This eliminates | Antoine Pitrou | 2012-09-05 | 1 | -0/+37 |
|
|
* | | Issue #13992: The trashcan mechanism is now thread-safe. This eliminates | Antoine Pitrou | 2012-09-05 | 1 | -0/+37 |
|
|
* | | Issue #14785: Add sys._debugmallocstats() to help debug low-level memory allo... | David Malcolm | 2012-06-22 | 1 | -0/+12 |
|
|
* | | Eric Snow's implementation of PEP 421. | Barry Warsaw | 2012-06-03 | 1 | -0/+3 |
|
|
* | | Implement PEP 412: Key-sharing dictionaries (closes #13903) | Benjamin Peterson | 2012-04-23 | 1 | -23/+4 |
|
|
* | | merge 3.2 (#14509) | Benjamin Peterson | 2012-04-09 | 1 | -0/+2 |
|\ \
| |/ |
|
* | | Rename _PyIter_GetBuiltin to _PyObject_GetBuiltin, and do not include it in t... | Antoine Pitrou | 2012-04-04 | 1 | -0/+13 |
|
|
* | | Micro-optimize PyObject_GetAttrString() | Victor Stinner | 2012-03-22 | 1 | -1/+1 |
|
|
* | | refactor and avoid warnings | Benjamin Peterson | 2012-03-09 | 1 | -7/+5 |
|
|
* | | Issue #14211: _PyObject_GenericSetAttrWithDict() keeps a strong reference to | Victor Stinner | 2012-03-08 | 1 | -4/+5 |
|
|
* | | - Issue #10181: New memoryview implementation fixes multiple ownership | Stefan Krah | 2012-02-25 | 1 | -0/+3 |
|
|
* | | merge 3.2 | Benjamin Peterson | 2012-02-21 | 1 | -0/+1 |
|\ \
| |/ |
|
* | | Merge 3.2: Issue #13703 plus some related test suite fixes. | Georg Brandl | 2012-02-20 | 1 | -1/+12 |
|\ \
| |/ |
|
| * | Merge from 3.1: Issue #13703: add a way to randomize the hash values of basic... | Georg Brandl | 2012-02-20 | 1 | -0/+2 |
| |\ |
|
| | * | Issue #13703: add a way to randomize the hash values of basic types (str, byt... | Georg Brandl | 2012-02-20 | 1 | -0/+2 |
|
|
* | | | add generic implementation of a __dict__ descriptor for C types | Benjamin Peterson | 2012-02-20 | 1 | -0/+42 |
|
|
* | | | use the static identifier api for looking up special methods | Benjamin Peterson | 2012-01-22 | 1 | -4/+4 |
|
|
* | | | Consolidate the occurrances of the prime used as the multiplier when hashing. | Gregory P. Smith | 2012-01-14 | 1 | -1/+1 |
|\ \ \
| |/ / |
|
* | | | improve abstract property support (closes #11610) | Benjamin Peterson | 2011-12-15 | 1 | -0/+23 |
|
|
* | | | Fix PyObject_Repr(): don't call PyUnicode_READY() if res is NULL | Victor Stinner | 2011-12-01 | 1 | -1/+3 |
|
|
* | | | PyObject_Repr() ensures that the result is a ready Unicode string | Victor Stinner | 2011-12-01 | 1 | -0/+8 |
|
|
* | | | Issue #13411: memoryview objects are now hashable when the underlying object ... | Antoine Pitrou | 2011-11-21 | 1 | -0/+15 |
|
|
* | | | PyObject_Str() ensures that the result string is ready | Victor Stinner | 2011-11-20 | 1 | -0/+5 |
|
|
* | | | Make _PyUnicode_FromId return borrowed references. | Martin v. Löwis | 2011-11-07 | 1 | -6/+3 |
|
|
* | | | Add API for static strings, primarily good for identifiers. | Martin v. Löwis | 2011-10-09 | 1 | -0/+36 |
|
|
* | | | Implement PEP 393. | Martin v. Löwis | 2011-09-28 | 1 | -8/+2 |
|
|
* | | | merge 3.2 | Benjamin Peterson | 2011-09-01 | 1 | -0/+3 |
|\ \ \
| |/ / |
|
| * | | make sure to initialize the method wrapper type | Benjamin Peterson | 2011-09-01 | 1 | -0/+3 |
|
|
* | | | Replace Py_NotImplemented returns with the macro form Py_RETURN_NOTIMPLEMENTED. | Brian Curtin | 2011-08-11 | 1 | -2/+1 |
|
|
* | | | merge 3.2 | Benjamin Peterson | 2011-07-30 | 1 | -3/+0 |
|\ \ \
| |/ / |
|
| * | | remove duplicated type ready | Benjamin Peterson | 2011-07-30 | 1 | -3/+0 |
|
|
* | | | also make NotImplementedType callable | Benjamin Peterson | 2011-07-29 | 1 | -0/+35 |
|
|
* | | | make the types of None and Ellipsis callable | Benjamin Peterson | 2011-07-29 | 1 | -0/+34 |
|
|
* | | | Issue 12647: Add __bool__() method to the None object. | Raymond Hettinger | 2011-07-28 | 1 | -2/+44 |
|
|
* | | | quaint and completely out of date comment | Benjamin Peterson | 2011-06-11 | 1 | -3/+2 |
|
|
* | | | allow __dir__ to return any sequence | Benjamin Peterson | 2011-06-11 | 1 | -30/+15 |
|
|
* | | | move specialized dir implementations into __dir__ methods (closes #12166) | Benjamin Peterson | 2011-05-24 | 1 | -177/+18 |
|
|
* | | | merge 3.2 | Benjamin Peterson | 2011-05-23 | 1 | -5/+6 |
|\ \ \
| |/ / |
|
| * | | merge 3.1 | Benjamin Peterson | 2011-05-23 | 1 | -5/+6 |
| |\ \
| | |/ |
|
| | * | correctly lookup __dir__ | Benjamin Peterson | 2011-05-23 | 1 | -5/+6 |
|
|
| | * | Merged revisions 84717 via svnmerge from | Benjamin Peterson | 2010-09-11 | 1 | -6/+6 |
|
|
| | * | Merged revisions 84344 via svnmerge from | Antoine Pitrou | 2010-08-28 | 1 | -48/+65 |
|
|
| | * | Merged revisions 83184 via svnmerge from | Antoine Pitrou | 2010-07-27 | 1 | -13/+2 |
|
|
| | * | Merged revisions 81250-81253 via svnmerge from | Victor Stinner | 2010-05-17 | 1 | -1/+4 |
|
|
| | * | Recorded merge of revisions 81032 via svnmerge from | Antoine Pitrou | 2010-05-09 | 1 | -1221/+1221 |
|
|
| | * | Merged revisions 78876 via svnmerge from | Victor Stinner | 2010-03-21 | 1 | -5/+12 |
|
|
| | * | Merged revisions 76663 via svnmerge from | Mark Dickinson | 2009-12-04 | 1 | -1/+1 |
|
|
| | * | Merged revisions 74459 via svnmerge from | Benjamin Peterson | 2009-08-15 | 1 | -3/+5 |
|
|