| Commit message (Expand) | Author | Age | Files | Lines |
* | revert unintended changes | Benjamin Peterson | 2010-07-20 | 1 | -1/+0 |
|
|
* | move test_trace.py so as not to conflict with future tests for the trace module | Benjamin Peterson | 2010-07-20 | 1 | -0/+1 |
|
|
* | cleanup basicsize logic #3268 | Benjamin Peterson | 2010-07-05 | 1 | -4/+2 |
|
|
* | Merged revisions 81709-81710 via svnmerge from | Benjamin Peterson | 2010-06-05 | 1 | -10/+2 |
|
|
* | Issue #8188: Introduce a new scheme for computing hashes of numbers | Mark Dickinson | 2010-05-23 | 1 | -6/+20 |
|
|
* | Ooops, add missing ";" in my previous commit (r81324, typeobject.c) | Victor Stinner | 2010-05-19 | 1 | -2/+2 |
|
|
* | Issue #6697: Check that _PyUnicode_AsString() result is not NULL in typeobject | Victor Stinner | 2010-05-19 | 1 | -2/+12 |
|
|
* | Recorded merge of revisions 81029 via svnmerge from | Antoine Pitrou | 2010-05-09 | 1 | -4762/+4762 |
|
|
* | Issue #6697: use %U format instead of _PyUnicode_AsString(), because | Victor Stinner | 2010-03-12 | 1 | -4/+9 |
|
|
* | Issue #6970: Remove redundant calls made when comparing objects. | Mark Dickinson | 2009-11-15 | 1 | -23/+1 |
|
|
* | Issue #6151: Make PyDescr_COMMON conform to standard C. | Alexandre Vassalotti | 2009-07-22 | 1 | -1/+1 |
|
|
* | #6428: py3k requires that __bool__ return a bool (and not an int) | Amaury Forgeot d'Arc | 2009-07-07 | 1 | -4/+2 |
|
|
* | Issue #5373: Remove restriction on null bytes in docstrings of classes. | Alexandre Vassalotti | 2009-06-04 | 1 | -7/+3 |
|
|
* | Merged revisions 72690 via svnmerge from | Benjamin Peterson | 2009-05-16 | 1 | -17/+4 |
|
|
* | Merged revisions 72461 via svnmerge from | Benjamin Peterson | 2009-05-08 | 1 | -0/+8 |
|
|
* | Merged revisions 71860 via svnmerge from | Benjamin Peterson | 2009-04-25 | 1 | -0/+6 |
|
|
* | Merged revisions 70342,70385-70387,70389-70390,70392-70393,70395,70400,70405-... | Benjamin Peterson | 2009-03-21 | 1 | -7/+9 |
|
|
* | fix len() when __len__() returns a non number type #5137 | Benjamin Peterson | 2009-02-08 | 1 | -1/+1 |
|
|
* | Issue #1717: add a DeprecationWarning in 3.x on type initialization | Mark Dickinson | 2009-02-08 | 1 | -0/+15 |
|
|
* | Issue #1717: rename tp_compare to tp_reserved. I'll change the | Mark Dickinson | 2009-02-02 | 1 | -4/+4 |
|
|
* | Remove exception for non-NULL tp_compare that was introduced in r69188. | Mark Dickinson | 2009-02-01 | 1 | -7/+0 |
|
|
* | Issue #1717, continued: remove PyObject_Compare and Py_CmpToRich declarations | Mark Dickinson | 2009-02-01 | 1 | -4/+9 |
|
|
* | Issue #1717: remove the cmp builtin function, the C-API functions | Mark Dickinson | 2009-02-01 | 1 | -1/+1 |
|
|
* | Merged revisions 68568,68665 via svnmerge from | Benjamin Peterson | 2009-01-18 | 1 | -2/+2 |
|
|
* | Issue #4910, patch 3/3: rename nb_long to nb_reserved | Mark Dickinson | 2009-01-17 | 1 | -4/+0 |
|
|
* | Merged revisions 68560 via svnmerge from | Amaury Forgeot d'Arc | 2009-01-12 | 1 | -1/+5 |
|
|
* | Issue #4910: replace "long" with "int" in docstring for __long__ slot and | Mark Dickinson | 2009-01-10 | 1 | -1/+1 |
|
|
* | Fix for bug 4360 "SystemError when method has both super() & closure". Patch | Barry Warsaw | 2008-11-20 | 1 | -2/+3 |
|
|
* | Merged revisions 67246 via svnmerge from | Benjamin Peterson | 2008-11-17 | 1 | -3/+36 |
|
|
* | remove some more references to __cmp__ #1717 | Benjamin Peterson | 2008-10-16 | 1 | -85/+0 |
|
|
* | Issue #2534: speed up isinstance() and issubclass() by 50-70%, so as to | Antoine Pitrou | 2008-08-26 | 1 | -0/+45 |
|
|
* | Rename PyUnicode_AsString -> _PyUnicode_AsString and | Marc-André Lemburg | 2008-08-07 | 1 | -6/+6 |
|
|
* | Manual forward port of 64962 - use PyObject_HashNotImplemented as a tp_hash l... | Nick Coghlan | 2008-07-15 | 1 | -10/+26 |
|
|
* | Merged revisions 63724,63726,63732,63744,63754-63755,63757-63758,63760,63775,... | Georg Brandl | 2008-06-10 | 1 | -10/+9 |
|
|
* | Merged revisions 63856-63857,63859-63860 via svnmerge from | Martin v. Löwis | 2008-06-04 | 1 | -0/+16 |
|
|
* | Renamed PyString to PyBytes | Christian Heimes | 2008-05-26 | 1 | -2/+2 |
|
|
* | #2963: fix method cache types. | Georg Brandl | 2008-05-25 | 1 | -3/+3 |
|
|
* | Rename copy_reg module to copyreg. | Alexandre Vassalotti | 2008-05-11 | 1 | -23/+23 |
|
|
* | Issue #1950: Fixed misusage of PyUnicode_AsString(). | Alexandre Vassalotti | 2008-05-03 | 1 | -7/+14 |
|
|
* | Bug #2565: The repr() of type objects now calls them 'class', | Martin v. Löwis | 2008-04-07 | 1 | -8/+2 |
|
|
* | Merged revisions 61038,61042-61045,61047,61050,61053,61055-61056,61061-61062,... | Christian Heimes | 2008-02-28 | 1 | -0/+98 |
|
|
* | Merged revisions 60364-60378 via svnmerge from | Christian Heimes | 2008-01-27 | 1 | -0/+18 |
|
|
* | Merged revisions 60350-60363 via svnmerge from | Christian Heimes | 2008-01-27 | 1 | -5/+5 |
|
|
* | Merged revisions 59921-59932 via svnmerge from | Christian Heimes | 2008-01-12 | 1 | -6/+204 |
|
|
* | Simplifed argument parsing in object.__format__, added test case. | Eric Smith | 2008-01-11 | 1 | -5/+1 |
|
|
* | Issue #1393: object_richcompare() returns NotImplemented instead of | Guido van Rossum | 2008-01-06 | 1 | -1/+4 |
|
|
* | Merge changes from 59576 from trunk to p3yk branch; these were skipped | Guido van Rossum | 2008-01-01 | 1 | -13/+16 |
|
|
* | #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT. | Christian Heimes | 2007-12-19 | 1 | -103/+103 |
|
|
* | Cleanup: Replaced most PyInt_ aliases with PyLong_ and disabled the aliases i... | Christian Heimes | 2007-12-02 | 1 | -7/+7 |
|
|
* | #1535: rename __builtin__ module to builtins. | Georg Brandl | 2007-12-02 | 1 | -3/+3 |
|
|