summaryrefslogtreecommitdiffstats
path: root/Objects/typeobject.c
Commit message (Expand)AuthorAgeFilesLines
* Issue #6697: use %U format instead of _PyUnicode_AsString(), becauseVictor Stinner2010-03-121-4/+9
* Issue #6970: Remove redundant calls made when comparing objects.Mark Dickinson2009-11-151-23/+1
* Issue #6151: Make PyDescr_COMMON conform to standard C.Alexandre Vassalotti2009-07-221-1/+1
* #6428: py3k requires that __bool__ return a bool (and not an int)Amaury Forgeot d'Arc2009-07-071-4/+2
* Issue #5373: Remove restriction on null bytes in docstrings of classes.Alexandre Vassalotti2009-06-041-7/+3
* Merged revisions 72690 via svnmerge fromBenjamin Peterson2009-05-161-17/+4
* Merged revisions 72461 via svnmerge fromBenjamin Peterson2009-05-081-0/+8
* Merged revisions 71860 via svnmerge fromBenjamin Peterson2009-04-251-0/+6
* Merged revisions 70342,70385-70387,70389-70390,70392-70393,70395,70400,70405-...Benjamin Peterson2009-03-211-7/+9
* fix len() when __len__() returns a non number type #5137Benjamin Peterson2009-02-081-1/+1
* Issue #1717: add a DeprecationWarning in 3.x on type initializationMark Dickinson2009-02-081-0/+15
* Issue #1717: rename tp_compare to tp_reserved. I'll change theMark Dickinson2009-02-021-4/+4
* Remove exception for non-NULL tp_compare that was introduced in r69188.Mark Dickinson2009-02-011-7/+0
* Issue #1717, continued: remove PyObject_Compare and Py_CmpToRich declarationsMark Dickinson2009-02-011-4/+9
* Issue #1717: remove the cmp builtin function, the C-API functionsMark Dickinson2009-02-011-1/+1
* Merged revisions 68568,68665 via svnmerge fromBenjamin Peterson2009-01-181-2/+2
* Issue #4910, patch 3/3: rename nb_long to nb_reservedMark Dickinson2009-01-171-4/+0
* Merged revisions 68560 via svnmerge fromAmaury Forgeot d'Arc2009-01-121-1/+5
* Issue #4910: replace "long" with "int" in docstring for __long__ slot andMark Dickinson2009-01-101-1/+1
* Fix for bug 4360 "SystemError when method has both super() & closure". PatchBarry Warsaw2008-11-201-2/+3
* Merged revisions 67246 via svnmerge fromBenjamin Peterson2008-11-171-3/+36
* remove some more references to __cmp__ #1717Benjamin Peterson2008-10-161-85/+0
* Issue #2534: speed up isinstance() and issubclass() by 50-70%, so as toAntoine Pitrou2008-08-261-0/+45
* Rename PyUnicode_AsString -> _PyUnicode_AsString andMarc-André Lemburg2008-08-071-6/+6
* Manual forward port of 64962 - use PyObject_HashNotImplemented as a tp_hash l...Nick Coghlan2008-07-151-10/+26
* Merged revisions 63724,63726,63732,63744,63754-63755,63757-63758,63760,63775,...Georg Brandl2008-06-101-10/+9
* Merged revisions 63856-63857,63859-63860 via svnmerge fromMartin v. Löwis2008-06-041-0/+16
* Renamed PyString to PyBytesChristian Heimes2008-05-261-2/+2
* #2963: fix method cache types.Georg Brandl2008-05-251-3/+3
* Rename copy_reg module to copyreg.Alexandre Vassalotti2008-05-111-23/+23
* Issue #1950: Fixed misusage of PyUnicode_AsString().Alexandre Vassalotti2008-05-031-7/+14
* Bug #2565: The repr() of type objects now calls them 'class',Martin v. Löwis2008-04-071-8/+2
* Merged revisions 61038,61042-61045,61047,61050,61053,61055-61056,61061-61062,...Christian Heimes2008-02-281-0/+98
* Merged revisions 60364-60378 via svnmerge fromChristian Heimes2008-01-271-0/+18
* Merged revisions 60350-60363 via svnmerge fromChristian Heimes2008-01-271-5/+5
* Merged revisions 59921-59932 via svnmerge fromChristian Heimes2008-01-121-6/+204
* Simplifed argument parsing in object.__format__, added test case.Eric Smith2008-01-111-5/+1
* Issue #1393: object_richcompare() returns NotImplemented instead ofGuido van Rossum2008-01-061-1/+4
* Merge changes from 59576 from trunk to p3yk branch; these were skippedGuido van Rossum2008-01-011-13/+16
* #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT.Christian Heimes2007-12-191-103/+103
* Cleanup: Replaced most PyInt_ aliases with PyLong_ and disabled the aliases i...Christian Heimes2007-12-021-7/+7
* #1535: rename __builtin__ module to builtins.Georg Brandl2007-12-021-3/+3
* Replace PyObject_Unicode with PyObject_Str everywhere, and remove theThomas Heller2007-11-151-1/+1
* Merging the py3k-pep3137 branch back into the py3k branch.Guido van Rossum2007-11-061-2/+2
* Fixes for issue 1752184, ensuring type objects are always createdGuido van Rossum2007-11-021-3/+12
* Merged revisions 57778-58052 via svnmerge fromThomas Wouters2007-09-081-9/+0
* Remove the simple slicing API. All slicing is now done with slice objects.Thomas Wouters2007-08-301-79/+0
* Fix #1753395.Georg Brandl2007-08-301-16/+4
* Use unicode and remove support for some uses of str8.Neal Norwitz2007-08-261-14/+10
* Use unicode and remove support for some uses of str8.Neal Norwitz2007-08-261-27/+17