summaryrefslogtreecommitdiffstats
path: root/Objects/typeobject.c
Commit message (Expand)AuthorAgeFilesLines
* Issue 9856: Change object.__format__ with a non-empty format string from a Pe...Eric V. Smith2011-03-121-13/+13
* Issue #9935: Speed up pickling of instances of user-defined classes.Antoine Pitrou2011-03-111-30/+48
* Remove useless argument of _PyUnicode_AsDefaultEncodedString()Victor Stinner2011-03-021-1/+1
* Issue #8914: fix various warnings from the Clang static analyzer v254.Brett Cannon2011-02-221-1/+1
* - Check for NULL result in PyType_FromSpec.Martin v. Löwis2011-02-211-0/+2
* #11249: in PyType_FromSpec, copy tp_doc slot since it usually will point to a...Georg Brandl2011-02-191-0/+11
* Issue #11067: Add PyType_GetFlags, to support PyUnicode_CheckMartin v. Löwis2011-02-051-0/+6
* remove unneeded assertionBenjamin Peterson2011-01-171-1/+0
* correct assertionBenjamin Peterson2011-01-171-1/+1
* turn some checks into assertions, since they are implied by the callerBenjamin Peterson2011-01-171-4/+2
* use PyErr_SetString instead of PyErr_FormatBenjamin Peterson2011-01-121-2/+2
* don't segfault on deleting __abstractmethods__ #10892Benjamin Peterson2011-01-121-2/+11
* Issue #9566: use Py_ssize_t instead of intVictor Stinner2011-01-041-3/+3
* Merge branches/pep-0384.Martin v. Löwis2010-12-031-0/+38
* follow up to #9778: define and use an unsigned hash typeBenjamin Peterson2010-10-231-2/+2
* Revert r85797 (and r85798): it broke the Windows buildbots because ofAntoine Pitrou2010-10-221-48/+30
* Issue #9935: Speed up pickling of instances of user-defined classes.Antoine Pitrou2010-10-221-30/+48
* -1 is reserved for errorsBenjamin Peterson2010-10-171-0/+3
* make hashes always the size of pointers; introduce Py_hash_t #9778Benjamin Peterson2010-10-171-13/+12
* typoBenjamin Peterson2010-10-031-2/+2
* type.__abstractmethods__ should raise an AttributeError #10006Benjamin Peterson2010-10-021-2/+5
* Issue #9930: Remove an unnecessary type check in wrap_binaryfunc_r;Mark Dickinson2010-09-231-4/+0
* Issue 7994: Make object.__format__() raise a PendingDeprecationWarningEric Smith2010-09-131-3/+20
* basicsize and itemsize are Py_ssize_t #9688Benjamin Peterson2010-08-251-2/+2
* Issue #8983: Corrected docstrings.Alexander Belopolsky2010-08-161-2/+2
* Issue #9425: Create PyErr_WarnFormat() functionVictor Stinner2010-08-131-7/+4
* revert unintended changesBenjamin Peterson2010-07-201-1/+0
* move test_trace.py so as not to conflict with future tests for the trace moduleBenjamin Peterson2010-07-201-0/+1
* cleanup basicsize logic #3268Benjamin Peterson2010-07-051-4/+2
* Merged revisions 81709-81710 via svnmerge fromBenjamin Peterson2010-06-051-10/+2
* Issue #8188: Introduce a new scheme for computing hashes of numbersMark Dickinson2010-05-231-6/+20
* Ooops, add missing ";" in my previous commit (r81324, typeobject.c)Victor Stinner2010-05-191-2/+2
* Issue #6697: Check that _PyUnicode_AsString() result is not NULL in typeobjectVictor Stinner2010-05-191-2/+12
* Recorded merge of revisions 81029 via svnmerge fromAntoine Pitrou2010-05-091-4762/+4762
* 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