summaryrefslogtreecommitdiffstats
path: root/Objects/typeobject.c
Commit message (Expand)AuthorAgeFilesLines
* bpo-26423: Fix possible overflow in wrap_lenfunc() (GH-13606) (GH-13625)Victor Stinner2019-05-281-1/+1
* closes bpo-36951: Correct some types in the type_members struct in typeobject...Miss Islington (bot)2019-05-201-3/+3
* bpo-25750: fix refcounts in type_getattro() (GH-6118) (GH-9091)Victor Stinner2018-09-071-7/+13
* closes bpo-34477: Objects/typeobject.c: Add missing NULL check to type_init()...Miss Islington (bot)2018-08-241-0/+3
* bpo-29902: Emit a Py3k deprecation warning when pickling or copying (#2823)Serhiy Storchaka2017-08-021-0/+23
* [2.7] bpo-25794: Fix `type.__setattr__()` for non-interned or unicode attribu...Serhiy Storchaka2017-05-201-5/+38
* revert a37cc3d926ec (#5322)Benjamin Peterson2016-12-141-27/+1
* Backed out changeset ea904d4b3634Benjamin Peterson2016-12-141-1/+1
* fix refleak in reduce_2 error caseBenjamin Peterson2016-12-031-1/+1
* declarations to the top of the blockBenjamin Peterson2016-12-021-1/+1
* Issue #5322: Fixed setting __new__ to a PyCFunction inside Python code.Serhiy Storchaka2016-12-021-1/+27
* Issue #26906: Resolving special methods of uninitialized type now causesSerhiy Storchaka2016-10-081-5/+19
* Issue #18287: PyType_Ready() now checks that tp_name is not NULL.Serhiy Storchaka2016-10-071-0/+6
* Fix a refleak in call_maybe()Victor Stinner2016-08-191-1/+3
* Fix a refleak in call_method()Victor Stinner2016-08-191-1/+3
* Spelling and grammar fixes in code comments and documentationMartin Panter2016-07-281-1/+1
* fix refleaks in PyDict_SetItem error cases (closes #27248)Benjamin Peterson2016-07-071-3/+9
* Issue #22463: Backport compiler warning fixes and workaroundsMartin Panter2016-06-211-1/+1
* 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