summaryrefslogtreecommitdiffstats
path: root/Objects/typeobject.c
Commit message (Expand)AuthorAgeFilesLines
* Fix the fix for issue #12149: it was incorrect, although it had the sideAntoine Pitrou2011-12-151-8/+10
* Issue #13161: fix doc strings of __i*__ operatorsEli Bendersky2011-11-111-11/+11
* fix possible refleaksBenjamin Peterson2011-08-171-1/+3
* Issue #11603: Fix a crash when __str__ is rebound as __repr__.Antoine Pitrou2011-07-151-1/+1
* Issue #12149: Update the method cache after a type's dictionnary getsAntoine Pitrou2011-07-121-0/+2
* use '->' to indicate return valuesBenjamin Peterson2011-05-241-3/+3
* #11565: Fix several typos. Patch by Piotr Kasprzyk.Ezio Melotti2011-03-161-2/+2
* Merged revisions 88069 via svnmerge fromBenjamin Peterson2011-01-171-1/+0
* Merged revisions 88066 via svnmerge fromBenjamin Peterson2011-01-171-1/+1
* Merged revisions 88063 via svnmerge fromBenjamin Peterson2011-01-171-4/+2
* Merged revisions 87960 via svnmerge fromBenjamin Peterson2011-01-121-2/+2
* Merged revisions 87952-87954 via svnmerge fromBenjamin Peterson2011-01-121-2/+11
* Merged revisions 85193 via svnmerge fromBenjamin Peterson2010-10-031-2/+2
* Merged revisions 85154 via svnmerge fromBenjamin Peterson2010-10-021-2/+5
* Merged revisions 84320 via svnmerge fromBenjamin Peterson2010-08-251-2/+2
* Merged revisions 84106 via svnmerge fromAlexander Belopolsky2010-08-161-2/+2
* Fix comment typo.Mark Dickinson2010-06-051-1/+1
* Issue #8627: Fix "XXX undetected error" from unchecked PyErr_WarnPy3k return.Mark Dickinson2010-06-051-4/+10
* Issue #8627: remove out-of-date warning about overriding __cmp__Mark Dickinson2010-06-051-7/+0
* fix ref countingBenjamin Peterson2010-06-051-1/+1
* implement object.__format__ with PyObject_FormatBenjamin Peterson2010-06-051-12/+1
* Untabify C files. Will watch buildbots.Antoine Pitrou2010-05-091-5106/+5106
* Remove an unneeded assignment.Brett Cannon2010-05-051-2/+2
* Issue 7994: Make object.__format__ with a non-empty format string a PendingDe...Eric Smith2010-04-021-3/+26
* remove type_compare, since type_richcompare does the same trickBenjamin Peterson2009-12-161-10/+1
* fix the ignoring of __cmp__ method on metaclasses #7491Benjamin Peterson2009-12-131-1/+5
* properly lookup __instancecheck__ and __subclasscheck__Benjamin Peterson2009-05-161-17/+4
* can't handle classic classes hereBenjamin Peterson2009-05-091-0/+1
* add _PyObject_LookupSpecial to handle fetching special method lookupBenjamin Peterson2009-05-081-0/+8
* fix a segfault when setting __class__ in __del__ #5283Benjamin Peterson2009-04-251-0/+6
* Issue #2396: backport the memoryview object.Antoine Pitrou2009-04-021-2/+6
* Fix a small nit in the error message if bool() falls back on __len__ and it r...Georg Brandl2009-03-151-1/+5
* fix building the core with --disable-unicodeBenjamin Peterson2009-01-251-0/+4
* #4930: Slightly cleaner (and faster) code in type creation:Amaury Forgeot d'Arc2009-01-171-2/+2
* #3720: Interpreter crashes when an evil iterator removes its own next function.Amaury Forgeot d'Arc2009-01-121-1/+5
* when __getattr__ is a descriptor, call it correctly; fixes #4230Benjamin Peterson2008-11-171-3/+36
* Issue #2534: speed up isinstance() and issubclass() by 50-70%, so as toAntoine Pitrou2008-08-261-0/+45
* generate py3k warnings on __getslice__, __delslice__, and __setslice__Benjamin Peterson2008-08-241-5/+23
* Issue 2235: Py3k warnings are now emitted for classes that will no longer inh...Nick Coghlan2008-08-111-0/+35
* Issue 2235: __hash__ is once again inherited by default, but inheritance can ...Nick Coghlan2008-07-151-44/+24
* Revert 64424, 64438, and 64439.Raymond Hettinger2008-06-241-4/+0
* Make bin() implementation parallel oct() and hex() so that int/long subclasse...Raymond Hettinger2008-06-201-0/+4
* This reverts r63675 based on the discussion in this thread:Gregory P. Smith2008-06-091-60/+60
* Some style nits. Also clarify in the docstrings what __sizeof__ does.Georg Brandl2008-06-011-1/+1
* Issue #2898: Added sys.getsizeof() to retrieve size of objects in bytes.Robert Schuppenies2008-06-011-0/+16
* Revert #2990 patch; it's not necessary as Armin showed.Georg Brandl2008-05-291-7/+5
* #2990: prevent inconsistent state while updating method cache.Georg Brandl2008-05-281-5/+7
* #2989: add PyType_Modified().Georg Brandl2008-05-281-10/+9
* Renamed PyString to PyBytesChristian Heimes2008-05-261-60/+60
* Revert copy_reg -> copyreg rename.Georg Brandl2008-05-201-3/+3