summaryrefslogtreecommitdiffstats
path: root/Objects/typeobject.c
Commit message (Expand)AuthorAgeFilesLines
* Fix definition mismatch for type_is_subtype_base_chain.Steve Dower2015-02-061-1/+1
|\
| * Fix definition mismatch for type_is_subtype_base_chain.Steve Dower2015-02-061-1/+1
* | merge 3.4 (#22735)Benjamin Peterson2015-02-061-252/+391
|\ \ | |/
| * fix many custom mro() edge cases and improve code quality (#22735)Benjamin Peterson2015-02-061-253/+392
* | allow changing __class__ between a heaptype and non-heaptype in some cases (c...Benjamin Peterson2015-01-301-26/+37
* | Issue #22079: PyType_Ready() now checks that statically allocated type hasSerhiy Storchaka2015-01-281-0/+14
|\ \ | |/
| * Issue #22079: PyType_Ready() now checks that statically allocated type hasSerhiy Storchaka2015-01-281-0/+14
* | Issue #21408: The default __ne__() now returns NotImplemented if __eq__()Serhiy Storchaka2015-01-261-2/+7
|\ \ | |/
| * Issue #21408: The default __ne__() now returns NotImplemented if __eq__()Serhiy Storchaka2015-01-261-2/+7
* | Issue #22783: Pickling now uses the NEWOBJ opcode instead of the NEWOBJ_EXSerhiy Storchaka2014-12-161-98/+62
* | merge 3.4 (#22954)Benjamin Peterson2014-11-271-1/+1
|\ \ | |/
| * remove tautological condition (closes #22954)Benjamin Peterson2014-11-271-1/+1
* | Issue #22847: Improve method cache efficiency.Antoine Pitrou2014-11-141-4/+36
* | merge with 3.4Georg Brandl2014-10-311-2/+2
|\ \ | |/
| * Closes #22772: fix __ifloordiv__ and __itruediv__ docstring.Georg Brandl2014-10-311-2/+2
* | Issue #22156: Fix "comparison between signed and unsigned integers" compilerVictor Stinner2014-08-151-3/+4
* | Issue #22082: Fix a compiler warning (function is not a prototype)Victor Stinner2014-07-271-2/+2
* | Issue #22082: Clear interned strings in slotdefs.Martin v. Löwis2014-07-261-3/+17
* | slotdefs is no longer sorted.Martin v. Löwis2014-07-261-1/+1
* | (Merge 3.4) Issue #21418: Fix a crash in the builtin function super() whenVictor Stinner2014-05-121-2/+9
|\ \ | |/
| * Issue #21418: Fix a crash in the builtin function super() when called withoutVictor Stinner2014-05-121-2/+9
* | Merge typo fix from 3.4Zachary Ware2014-04-181-1/+1
|\ \ | |/
| * Fix a typo in the docstring of nb_index.Zachary Ware2014-04-181-1/+1
* | Merge typo fix from 3.4Zachary Ware2014-04-181-1/+1
|\ \ | |/
| * Fix a typo in the signature for object.__ge__Zachary Ware2014-04-181-1/+1
* | PEP 465: a dedicated infix operator for matrix multiplication (closes #21176)Benjamin Peterson2014-04-101-0/+10
|/
* correct the fix for #20637; allow slot descriptor inheritance to take place b...Benjamin Peterson2014-03-171-9/+8
* Issue #20786: Fix signatures for dict.__delitem__ and property.__delete__Yury Selivanov2014-03-021-2/+2
* Issue #20637: Key-sharing now also works for instance dictionaries of subclas...Antoine Pitrou2014-02-231-0/+3
* look up __getnewargs__ and __getnewargs_ex__ on the object type (#16251)Benjamin Peterson2014-02-161-12/+6
* Issue #20530: The signatures for slot builtins have been updatedLarry Hastings2014-02-101-42/+42
* Issue #20530: Argument Clinic's signature format has been revised again.Larry Hastings2014-02-091-78/+111
* Issue #17162: Fix compilation, replace non-breaking space with an ASCII spaceVictor Stinner2014-02-041-1/+1
* Issue #17162: Add PyType_GetSlot.Martin v. Löwis2014-02-041-0/+13
* Issue #20326: Argument Clinic now uses a simple, unique signature toLarry Hastings2014-01-281-77/+67
* Issue #20189: Four additional builtin types (PyTypeObject,Larry Hastings2014-01-241-72/+173
* Silence expression result unused warnings with clang.Christian Heimes2013-12-041-1/+1
* Issue #19088: Merge with 3.3.Alexandre Vassalotti2013-11-301-17/+20
|\
| * Issue #19088: Fix incorrect caching of the copyreg module.Alexandre Vassalotti2013-11-301-17/+20
* | Issue #17810: Fixed NULL check in _PyObject_GetItemsIter()Christian Heimes2013-11-231-1/+1
* | Issue #17810: Implement PEP 3154, pickle protocol 4.Antoine Pitrou2013-11-231-93/+373
* | Issue #19515: Remove identifiers duplicated in the same file.Victor Stinner2013-11-121-1/+0
* | Issue #19512, #19515: remove shared identifiers, move identifiers where theyVictor Stinner2013-11-071-3/+4
* | Issue #19514: Deduplicate some _Py_IDENTIFIER declarations.Martin v. Löwis2013-11-071-8/+6
* | Issue #19512: add _PyUnicode_CompareWithId() functionVictor Stinner2013-11-061-11/+12
* | Issue #19512: type_abstractmethods() and type_set_abstractmethods() now use anVictor Stinner2013-11-061-5/+10
* | Issue #17936: Fix O(n**2) behaviour when adding or removing many subclasses o...Antoine Pitrou2013-10-291-59/+63
* | fix indentVictor Stinner2013-10-291-4/+4
* | mergeRaymond Hettinger2013-10-011-4/+1
|\ \ | |/
| * Issue #18594: Fix the fast path for collections.Counter().Raymond Hettinger2013-10-011-4/+1