summaryrefslogtreecommitdiffstats
path: root/Objects/typeobject.c
Commit message (Expand)AuthorAgeFilesLines
* merge 3.5 (#25731)Benjamin Peterson2016-01-191-1/+1
|\
| * set tp_new from the class in the hierarchy that actually owns the descriptor ...Benjamin Peterson2016-01-191-1/+1
* | As per further discussion, re-enable the typeobject.c guard for picklability.Barry Warsaw2016-01-111-9/+0
|\ \ | |/
| * Comment out some tests that won't pass now that we've reverted theBarry Warsaw2016-01-111-27/+0
* | Issue #22995: [UPDATE] Comment out the one of the pickleability tests inBarry Warsaw2016-01-111-0/+9
|\ \ | |/
| * Issue #22995: [UPDATE] Comment out the one of the pickleability tests inBarry Warsaw2016-01-111-0/+9
* | Issue #20440: Cleaning up the code by using Py_SETREF.Serhiy Storchaka2016-01-051-4/+2
* | Issue #25961: Disallowed null characters in the type name.Serhiy Storchaka2015-12-301-17/+15
|\ \ | |/
| * Issue #25961: Disallowed null characters in the type name.Serhiy Storchaka2015-12-301-28/+17
* | Issue #20440: Cleaning up the code by using Py_SETREF and Py_CLEAR.Serhiy Storchaka2015-12-271-11/+2
* | Issue #22995: Instances of extension types with a state that aren'tSerhiy Storchaka2015-12-251-15/+36
|\ \ | |/
| * Issue #22995: Instances of extension types with a state that aren'tSerhiy Storchaka2015-12-251-15/+36
* | Issue #25923: Added more const qualifiers to signatures of static and private...Serhiy Storchaka2015-12-251-5/+5
* | Issue #25923: Added the const qualifier to static constant arrays.Serhiy Storchaka2015-12-251-1/+1
* | Issue #20440: Massive replacing unsafe attribute setting code with specialSerhiy Storchaka2015-12-241-6/+3
|\ \ | |/
| * Issue #20440: Massive replacing unsafe attribute setting code with specialSerhiy Storchaka2015-12-241-6/+3
* | Issue #24097: Fixed crash in object.__reduce__() if slot name is freed insideSerhiy Storchaka2015-11-251-0/+3
|\ \ | |/
| * Issue #24097: Fixed crash in object.__reduce__() if slot name is freed insideSerhiy Storchaka2015-11-251-0/+3
| |\
| | * Issue #24097: Fixed crash in object.__reduce__() if slot name is freed insideSerhiy Storchaka2015-11-251-0/+3
* | | Issue #22995: Default implementation of __reduce__ and __reduce_ex__ nowSerhiy Storchaka2015-11-121-0/+6
|\ \ \ | |/ /
| * | Issue #22995: Default implementation of __reduce__ and __reduce_ex__ nowSerhiy Storchaka2015-11-121-0/+6
| |\ \ | | |/
| | * Issue #22995: Default implementation of __reduce__ and __reduce_ex__ nowSerhiy Storchaka2015-11-121-0/+12
* | | Issue #24164: Objects that need calling ``__new__`` with keyword arguments,Serhiy Storchaka2015-10-101-13/+3
* | | Merge typo fixes from 3.5Martin Panter2015-10-071-1/+1
|\ \ \ | |/ /
| * | Merge typo fixes from 3.4 into 3.5Martin Panter2015-10-071-1/+1
| |\ \ | | |/
| | * Various minor typos in documentation and commentsMartin Panter2015-10-071-1/+1
* | | merge 3.5 (closes #24806)Benjamin Peterson2015-10-071-6/+6
|\ \ \ | |/ /
| * | merge 3.4 (#24806)Benjamin Peterson2015-10-071-6/+6
| |\ \ | | |/
| | * prevent unacceptable bases from becoming bases through multiple inheritance (...Benjamin Peterson2015-10-071-6/+6
* | | Issue #24912: Prevent __class__ assignment to immutable built-in objects. (Me...Guido van Rossum2015-09-051-0/+59
|\ \ \ | |/ /
| * | Issue #24912: Prevent __class__ assignment to immutable built-in objects.Guido van Rossum2015-09-051-0/+59
* | | type_call() now detect bugs in type new and initVictor Stinner2015-09-031-19/+27
|/ /
* | Issue #19235: Add new RecursionError exception. Patch by Georg Brandl.Yury Selivanov2015-07-031-1/+1
* | Fixed indentation of Python examples in C comments.Serhiy Storchaka2015-06-101-1/+1
|\ \ | |/
| * Fixed indentation of Python examples in C comments.Serhiy Storchaka2015-06-101-1/+1
| * Issue #22079: Deprecation warning now is issued in PyType_Ready() instead ofSerhiy Storchaka2015-03-221-5/+8
* | Issue #24268: Address some PEP 489 refleaksNick Coghlan2015-05-231-5/+10
* | PEP 0492 -- Coroutines with async and await syntax. Issue #24017.Yury Selivanov2015-05-121-10/+81
* | Issue #20586: Argument Clinic now ensures signatures on functions without doc...Zachary Ware2015-04-131-1/+1
* | Issue #23726: Don't enable GC for user subclasses of non-GC types that don't ...Antoine Pitrou2015-04-131-3/+4
* | Issue #23629: Fix the default __sizeof__ implementation for variable-sized ob...Antoine Pitrou2015-03-101-1/+1
|\ \ | |/
| * Issue #23629: Fix the default __sizeof__ implementation for variable-sized ob...Antoine Pitrou2015-03-101-1/+1
* | Fixed a typo.Serhiy Storchaka2015-03-011-1/+1
* | Issue #20204: Deprecation warning is now raised for builtin type without theSerhiy Storchaka2015-03-011-0/+6
* | 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
|\ \ | |/