| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | | | 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 |
|
|
* | | | Remove traces of division_warning left over from Python 2 (#10998) | Éric Araujo | 2011-03-26 | 1 | -2/+0 |
|/ / |
|
* | | Merge branches/pep-0384. | Martin v. Löwis | 2010-12-03 | 1 | -1/+13 |
|
|
* | | Remove redundant includes of headers that are already included by Python.h. | Georg Brandl | 2010-11-30 | 1 | -1/+0 |
|
|
* | | follow up to #9778: define and use an unsigned hash type | Benjamin Peterson | 2010-10-23 | 1 | -4/+4 |
|
|
* | | make hashes always the size of pointers; introduce Py_hash_t #9778 | Benjamin Peterson | 2010-10-17 | 1 | -7/+7 |
|
|
* | | Use locale encoding if Py_FileSystemDefaultEncoding is not set | Victor Stinner | 2010-10-15 | 1 | -4/+0 |
|
|
* | | Issue #9630: Redecode filenames when setting the filesystem encoding | Victor Stinner | 2010-09-29 | 1 | -0/+4 |
|
|
* | | fix formatting | Benjamin Peterson | 2010-09-11 | 1 | -6/+6 |
|
|
* | | Issue #1868: Eliminate subtle timing issues in thread-local objects by | Antoine Pitrou | 2010-08-28 | 1 | -48/+65 |
|
|
* | | Issue #9294: remove dead code in Objects/object.c. Patch by Grant Limberg. | Antoine Pitrou | 2010-07-27 | 1 | -13/+2 |
|
|
* | | Issue #8188: Introduce a new scheme for computing hashes of numbers | Mark Dickinson | 2010-05-23 | 1 | -49/+87 |
|
|
* | | Issue #8749: remove unused code in Objects/object.c. Thanks Yaniv Aknin. | Mark Dickinson | 2010-05-22 | 1 | -24/+0 |
|
|
* | | Fix refleak in internal_print() introduced by myself in r81251 | Victor Stinner | 2010-05-17 | 1 | -0/+1 |
|
|
* | | PyObject_Dump() encodes unicode objects to utf8 with backslashreplace (instead | Victor Stinner | 2010-05-17 | 1 | -1/+3 |
|
|
* | | Recorded merge of revisions 81029 via svnmerge from | Antoine Pitrou | 2010-05-09 | 1 | -1226/+1226 |
|
|
* | | Merged revisions 79809 via svnmerge from | Mark Dickinson | 2010-04-06 | 1 | -3/+6 |
|
|
* | | Merged revisions 79804 via svnmerge from | Mark Dickinson | 2010-04-05 | 1 | -3/+3 |
|
|
* | | Issue #6697: catch _PyUnicode_AsString() errors in getattr() and setattr() | Victor Stinner | 2010-03-12 | 1 | -5/+12 |
|
|