summaryrefslogtreecommitdiff
path: root/Objects/typeobject.c
Commit message (Expand)AuthorAgeFilesLines
* Closes #22772: fix __ifloordiv__ and __itruediv__ docstring.Georg Brandl2014-10-311-2/+2
* Issue #21418: Fix a crash in the builtin function super() when called withoutVictor Stinner2014-05-131-2/+9
* Fix a typo in the docstring of nb_index.Zachary Ware2014-04-181-1/+1
* Fix a typo in the signature for object.__ge__Zachary Ware2014-04-181-1/+1
* 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-091-42/+42
* Issue #20530: Argument Clinic's signature format has been revised again.Larry Hastings2014-02-081-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-071-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
| * when arguments are cells clear the locals slot (backport of #17927)Benjamin Peterson2013-05-141-0/+12
* | Restore changeset 5bd9db528aed (issue #18408)Victor Stinner2013-08-261-0/+7
* | Back out 5bd9db528aed (issue #18408). It caused unsolved buildbot failures.Antoine Pitrou2013-08-231-7/+0
* | 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-181-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-121-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-16/+7
|\ \ | |/ |/|
| * Issue #16447: Merge fix from 3.3.Mark Dickinson2013-04-131-16/+7
| |\
| | * merge 3.3 (#17610)Benjamin Peterson2013-04-011-112/+99
| | |\
| | * \ Merge: #7963: fix error message when 'object' called with arguments.R David Murray2013-02-181-1/+1
| | |\ \
| | * | | 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-1/+1
| | |\ \ \