aboutsummaryrefslogtreecommitdiff
path: root/Objects/typeobject.c
AgeCommit message (Expand)Author
2014-05-13Issue #21418: Fix a crash in the builtin function super() when called withoutVictor Stinner
2014-04-18Fix a typo in the docstring of nb_index.Zachary Ware
2014-04-18Fix a typo in the signature for object.__ge__Zachary Ware
2014-03-17correct the fix for #20637; allow slot descriptor inheritance to take place b...Benjamin Peterson
2014-03-02Issue #20786: Fix signatures for dict.__delitem__ and property.__delete__Yury Selivanov
2014-02-23Issue #20637: Key-sharing now also works for instance dictionaries of subclas...Antoine Pitrou
2014-02-16look up __getnewargs__ and __getnewargs_ex__ on the object type (#16251)Benjamin Peterson
2014-02-09Issue #20530: The signatures for slot builtins have been updatedLarry Hastings
2014-02-08Issue #20530: Argument Clinic's signature format has been revised again.Larry Hastings
2014-02-04Issue #17162: Fix compilation, replace non-breaking space with an ASCII spaceVictor Stinner
2014-02-04Issue #17162: Add PyType_GetSlot.Martin v. Löwis
2014-01-28Issue #20326: Argument Clinic now uses a simple, unique signature toLarry Hastings
2014-01-24Issue #20189: Four additional builtin types (PyTypeObject,Larry Hastings
2013-12-04Silence expression result unused warnings with clang.Christian Heimes
2013-11-30Issue #19088: Merge with 3.3.Alexandre Vassalotti
2013-11-30Issue #19088: Fix incorrect caching of the copyreg module.Alexandre Vassalotti
2013-11-23Issue #17810: Fixed NULL check in _PyObject_GetItemsIter()Christian Heimes
2013-11-23Issue #17810: Implement PEP 3154, pickle protocol 4.Antoine Pitrou
2013-11-12Issue #19515: Remove identifiers duplicated in the same file.Victor Stinner
2013-11-07Issue #19512, #19515: remove shared identifiers, move identifiers where theyVictor Stinner
2013-11-07Issue #19514: Deduplicate some _Py_IDENTIFIER declarations.Martin v. Löwis
2013-11-07Issue #19512: add _PyUnicode_CompareWithId() functionVictor Stinner
2013-11-06Issue #19512: type_abstractmethods() and type_set_abstractmethods() now use anVictor Stinner
2013-10-29Issue #17936: Fix O(n**2) behaviour when adding or removing many subclasses o...Antoine Pitrou
2013-10-29fix indentVictor Stinner
2013-10-01mergeRaymond Hettinger
2013-10-01Issue #18594: Fix the fast path for collections.Counter().Raymond Hettinger
2013-08-26Restore changeset 5bd9db528aed (issue #18408)Victor Stinner
2013-08-23Back out 5bd9db528aed (issue #18408). It caused unsolved buildbot failures.Antoine Pitrou
2013-07-30Issue #18112: PEP 442 implementation (safe object finalization).Antoine Pitrou
2013-07-20Issue #18327: Fix argument order in call to compatible_for_assignment(oldto, ...Christian Heimes
2013-07-18Issue #18408: PyObject_Str(), PyObject_Repr() and type_call() now fail with anVictor Stinner
2013-07-17Issue #18408: Fix PyType_Ready(), handle _PyDict_SetItemId() failureVictor Stinner
2013-07-16Cleanup type_call() to ease debugVictor Stinner
2013-07-15Issue #18408: type_new() and PyType_FromSpecWithBases() now raise MemoryErrorVictor Stinner
2013-07-12Issue #18408: pmerge() help of mro_implementation() now raises MemoryError onVictor Stinner
2013-07-11Issue #18408: slot_tp_str() must not fallback on slot_tp_repr() on errorVictor Stinner
2013-07-11typeobject.c: remove trailing spacesVictor Stinner
2013-07-08Issue #18408: Fix PyType_Ready() and type.__bases__ setter to handleVictor Stinner
2013-05-14when arguments are cells clear the locals slot (backport of #17927)Benjamin Peterson
2013-05-12when an argument is a cell, set the local copy to NULL (see #17927)Benjamin Peterson
2013-05-10#17927: Keep frame from referencing cell-ified arguments.Guido van Rossum
2013-05-04Issue #17408: Avoid using an obsolete instance of the copyreg module when the...Antoine Pitrou
2013-05-04Issue #17408: Avoid using an obsolete instance of the copyreg module when the...Antoine Pitrou
2013-04-13Issue #16447: Merge fix from 3.3.Mark Dickinson
2013-04-13Issue #16447: Fix potential segfault when setting __name__ on a class.Mark Dickinson
2013-04-01merge 3.3 (#17610)Benjamin Peterson
2013-04-01list slotdefs in offset order rather than sorting them (closes #17610)Benjamin Peterson
2013-02-18Merge: #7963: fix error message when 'object' called with arguments.R David Murray
2013-02-18#7963: fix error message when 'object' called with arguments.R David Murray