summaryrefslogtreecommitdiffstats
path: root/Objects/typeobject.c
Commit message (Expand)AuthorAgeFilesLines
* 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
* | decref cached keys on type deallocation (#13903)Benjamin Peterson2012-04-271-3/+5
* | Account for shared keys in type's __sizeof__ (#13903).Martin v. Loewis2012-04-241-0/+18
* | merge 3.2 (#14658)Benjamin Peterson2012-04-241-2/+3
|\ \ | |/
| * don't use a slot wrapper from a different special method (closes #14658)Benjamin Peterson2012-04-241-2/+3
* | Implement PEP 412: Key-sharing dictionaries (closes #13903)Benjamin Peterson2012-04-231-1/+16
* | merge 3.2Benjamin Peterson2012-04-011-13/+9
|\ \ | |/
| * adjust formattingBenjamin Peterson2012-04-011-5/+5
| * remove extraneous conditionBenjamin Peterson2012-04-011-6/+4
| * be consistent with rest of functionBenjamin Peterson2012-04-011-2/+1
* | Issue #14383: Add _PyDict_GetItemId() and _PyDict_SetItemId() functionsVictor Stinner2012-03-261-118/+85
* | make extra arguments to object.__init__/__new__ to errors in most cases (fini...Benjamin Peterson2012-03-171-35/+10
* | simply this slightlyBenjamin Peterson2012-03-171-9/+6
* | merge 3.2 (#14334)Benjamin Peterson2012-03-161-0/+7
|\ \ | |/
| * check to make sure the attribute is a string (#14334)Benjamin Peterson2012-03-161-0/+7
* | Close #14199: _PyType_Lookup() and super_getattro() keep a strong reference toVictor Stinner2012-03-081-0/+9
* | merge 3.2 (#3787e896dbe9)Benjamin Peterson2012-03-081-2/+7
|\ \ | |/
| * allow cycles throught the __dict__ slot to be cleared (closes #1469629)Benjamin Peterson2012-03-081-2/+7
* | Close #14095: type.__new__() doesn't remove __qualname__ key from the classVictor Stinner2012-02-251-85/+70
* | check for NULL to fix segfaultBenjamin Peterson2012-02-201-1/+1
* | add generic implementation of a __dict__ descriptor for C typesBenjamin Peterson2012-02-201-18/+4
* | merge 3.2 (closes #13908)Benjamin Peterson2012-01-301-1/+5
|\ \ | |/
| * ready types returned from PyType_FromSpecBenjamin Peterson2012-01-301-0/+3
| * adjust declarationBenjamin Peterson2012-01-301-1/+2
* | use the static identifier api for looking up special methodsBenjamin Peterson2012-01-221-98/+88
* | Issue #13577: Built-in methods and functions now have a __qualname__.Antoine Pitrou2011-12-231-1/+1
* | Fix the fix for issue #12149: it was incorrect, although it had the sideAntoine Pitrou2011-12-151-8/+10
|\ \ | |/
| * Fix the fix for issue #12149: it was incorrect, although it had the sideAntoine Pitrou2011-12-151-8/+10
* | Issue #13575: there is only one class type.Florent Xicluna2011-12-121-19/+12
* | PEP 3155 / issue #13448: Qualified name for classes and functions.Antoine Pitrou2011-11-251-3/+53