summaryrefslogtreecommitdiffstats
path: root/Objects/typeobject.c
Commit message (Expand)AuthorAgeFilesLines
* Issue #27225: Fixed a reference leak in type_new when setting __new__ fails.Serhiy Storchaka2016-06-051-1/+5
* Backed out changeset e7062dd9085e (#25731)Benjamin Peterson2016-05-281-1/+1
* Issue #26718: super.__init__ no longer leaks memory if called multiple times.Serhiy Storchaka2016-04-131-3/+3
* Issue #22570: Renamed Py_SETREF to Py_XSETREF.Serhiy Storchaka2016-04-061-1/+1
* fix hash member name (closes #22847)Benjamin Peterson2016-02-071-1/+1
* fix debug assertionBenjamin Peterson2016-02-051-1/+1
* Issue #22847: Improve method cache efficiency.Antoine Pitrou2014-11-141-5/+38
* set tp_new from the class in the hierarchy that actually owns the descriptor ...Benjamin Peterson2016-01-191-1/+1
* Comment out two tests that won't pass now after reverting the typeobject.cBarry Warsaw2016-01-111-24/+0
* Issue #22995: [UPDATE] Comment out the one of the pickleability tests inBarry Warsaw2016-01-111-0/+9
* Issue #25961: Fixed compilation error and a leak in type constructor.Serhiy Storchaka2015-12-311-4/+11
* Issue #25961: Disallowed null characters in the type name.Serhiy Storchaka2015-12-301-4/+11
* Issue #22995: Instances of extension types with a state that aren'tSerhiy Storchaka2015-12-301-7/+32
* Issue #20440: Massive replacing unsafe attribute setting code with specialSerhiy Storchaka2015-12-241-4/+2
* Issue #24097: Fixed crash in object.__reduce__() if slot name is freed insideSerhiy Storchaka2015-11-251-1/+5
* Issue #22995: Default implementation of __reduce__ and __reduce_ex__ nowSerhiy Storchaka2015-11-121-0/+7
* prevent unacceptable bases from becoming bases through multiple inheritance (...Benjamin Peterson2015-10-071-7/+6
* Fixed indentation of Python examples in C comments.Serhiy Storchaka2015-06-101-4/+4
* Issue #22079: Py3k warning now is issued in PyType_Ready() instead ofSerhiy Storchaka2015-03-221-6/+9
* Issue #23629: Fix the default __sizeof__ implementation for variable-sized ob...Antoine Pitrou2015-03-101-1/+1
* Issue #22079: PyType_Ready() now checks that statically allocated type hasSerhiy Storchaka2015-01-281-0/+14
* remove tautological condition (closes #22954)Benjamin Peterson2014-11-271-1/+1
* Closes #22772: fix __ifloordiv__ and __itruediv__ docstring.Georg Brandl2014-10-311-2/+2
* Issue #16447: Fix potential segfault when setting __name__ on a class.Mark Dickinson2013-04-131-1/+5
* list slotdefs in offset order rather than sorting them (closes #17610)Benjamin Peterson2013-04-071-131/+114
* #7963: fix error message when 'object' called with arguments.R David Murray2013-02-191-2/+2
* Improve tooltips by listing the most common argument pattern first.Raymond Hettinger2013-01-191-1/+1
* Fixed memory leak in error branch of object_repr which may leak a reference t...Christian Heimes2012-09-101-1/+3
* Fixed possible reference leak to mod when type_name() returns NULLChristian Heimes2012-09-101-1/+3
* Issue #13992: The trashcan mechanism is now thread-safe. This eliminatesAntoine Pitrou2012-09-051-0/+5
* Issue #15604: Update uses of PyObject_IsTrue() to check for and handle errors...Antoine Pitrou2012-08-151-5/+7
* fix possible refleak (closes #14752)Benjamin Peterson2012-05-081-2/+4
* don't use a slot wrapper from a different special method (closes #14658)Benjamin Peterson2012-04-241-2/+3
* check to make sure the attribute is a string (#14334)Benjamin Peterson2012-03-161-0/+7
* allow cycles throught the __dict__ slot to be cleared (closes #1469629)Benjamin Peterson2012-03-081-2/+7
* 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