summaryrefslogtreecommitdiffstats
path: root/Objects/typeobject.c
Commit message (Expand)AuthorAgeFilesLines
* Issue #18112: PEP 442 implementation (safe object finalization).Antoine Pitrou2013-07-301-50/+47
* Issue #18327: Fix argument order in call to compatible_for_assignment(oldto, ...Christian Heimes2013-07-201-1/+1
* Issue #18408: PyObject_Str(), PyObject_Repr() and type_call() now fail with anVictor Stinner2013-07-171-0/+7
* Issue #18408: Fix PyType_Ready(), handle _PyDict_SetItemId() failureVictor Stinner2013-07-171-3/+7
* Cleanup type_call() to ease debugVictor Stinner2013-07-161-4/+6
* Issue #18408: type_new() and PyType_FromSpecWithBases() now raise MemoryErrorVictor Stinner2013-07-151-2/+6
* Issue #18408: pmerge() help of mro_implementation() now raises MemoryError onVictor Stinner2013-07-111-2/+4
* Issue #18408: slot_tp_str() must not fallback on slot_tp_repr() on errorVictor Stinner2013-07-111-19/+2
* typeobject.c: remove trailing spacesVictor Stinner2013-07-111-3/+3
* Issue #18408: Fix PyType_Ready() and type.__bases__ setter to handleVictor Stinner2013-07-081-0/+2
* when an argument is a cell, set the local copy to NULL (see #17927)Benjamin Peterson2013-05-121-3/+11
* #17927: Keep frame from referencing cell-ified arguments.Guido van Rossum2013-05-101-0/+4
* Issue #17408: Avoid using an obsolete instance of the copyreg module when the...Antoine Pitrou2013-05-041-5/+17
|\
| * Issue #17408: Avoid using an obsolete instance of the copyreg module when the...Antoine Pitrou2013-05-041-5/+17
* | Issue #16447: Merge fix from 3.3.Mark Dickinson2013-04-131-1/+4
|\ \ | |/
| * Issue #16447: Fix potential segfault when setting __name__ on a class.Mark Dickinson2013-04-131-1/+4
* | merge 3.3 (#17610)Benjamin Peterson2013-04-011-112/+99
|\ \ | |/
| * list slotdefs in offset order rather than sorting them (closes #17610)Benjamin Peterson2013-04-011-112/+99
* | Merge: #7963: fix error message when 'object' called with arguments.R David Murray2013-02-191-1/+1
|\ \ | |/
| * #7963: fix error message when 'object' called with arguments.R David Murray2013-02-191-1/+1
| |\
| | * #7963: fix error message when 'object' called with arguments.R David Murray2013-02-191-2/+2
* | | Issue #15422: get rid of PyCFunction_New macroAndrew Svetlov2012-12-251-2/+2
* | | Issue #9856: Replace deprecation warinigs to raising TypeError in object.__fo...Andrew Svetlov2012-12-231-13/+4
* | | merge 3.3Benjamin Peterson2012-10-311-5/+6
|\ \ \ | |/ /
| * | do safety checks on __qualname__ assignmentBenjamin Peterson2012-10-311-0/+2
| * | don't shadow the __qualname__ descriptor with __qualname__ in the class's __d...Benjamin Peterson2012-10-311-5/+4
* | | Issue #16086: PyTypeObject.tp_flags and PyType_Spec.flags are now unsignedVictor Stinner2012-10-301-1/+1
|/ /
* | Silence compiler warnings on Solaris 10 via explicit (void *) casts.Trent Nelson2012-09-191-3/+3
|\ \ | |/
| * Silence compiler warnings on Solaris 10 via explicit (void *) casts.Trent Nelson2012-09-191-3/+3
* | Fixed memory leak in error branch of object_repr which may leak a reference t...Christian Heimes2012-09-101-1/+3
|\ \ | |/
| * 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
|\ \ | |/
| * 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 #13992: The trashcan mechanism is now thread-safe. This eliminatesAntoine Pitrou2012-09-051-0/+5
* | Make super() internal errors RuntimeError instead of SystemError (closes #15839)Benjamin Peterson2012-09-021-7/+7
* | Issue #15604: Update uses of PyObject_IsTrue() to check for and handle errors...Antoine Pitrou2012-08-151-5/+7
|\ \ | |/
| * Issue #15604: Update uses of PyObject_IsTrue() to check for and handle errors...Antoine Pitrou2012-08-151-5/+7
* | Try to fix crash on x86 OpenIndiana buildbot.Antoine Pitrou2012-06-231-1/+2
* | Replace assert() with a more informative fatal error.Antoine Pitrou2012-06-231-1/+6
* | Use struct member (ht_type) instead of casting pointers.Antoine Pitrou2012-06-231-12/+12
* | Issue #15146: Add PyType_FromSpecWithBases. Patch by Robin Schreiber.Martin v. Löwis2012-06-231-4/+76
* | Issue #15142: Fix reference leak when deallocating instances of types created...Antoine Pitrou2012-06-231-0/+6
|\ \ | |/
| * Issue #15142: Fix reference leak when deallocating instances of types created...Antoine Pitrou2012-06-231-0/+6
* | Close #14857: fix regression in references to PEP 3135 implicit __class__ clo...Nick Coghlan2012-05-271-1/+1
* | Use size_t, not ssize_t (issue #14801).Antoine Pitrou2012-05-141-1/+1
|\ \ | |/
| * Remove tab charactersAntoine Pitrou2012-05-141-8/+8
| * Use size_t, not ssize_t (issue #14801).Antoine Pitrou2012-05-141-1/+1
* | merge 3.2 (#14752)Benjamin Peterson2012-05-081-2/+4
|\ \ | |/
| * fix possible refleak (closes #14752)Benjamin Peterson2012-05-081-2/+4