summaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
* bpo-45123: PyAiter_Check and PyObject_GetAiter fix & rename. (GH-28194) (GH-2...Miss Islington (bot)2021-09-071-7/+5
* bpo-44963: Implement send() and throw() methods for anext_awaitable objects (...Miss Islington (bot)2021-09-071-22/+96
* bpo-45030: Fix integer overflow in __reduce__ of the range iterator (GH-28000)Miss Islington (bot)2021-09-041-16/+18
* bpo-45018: Fix rangeiter_reduce in rangeobject.c (GH-27938)Miss Islington (bot)2021-08-281-1/+1
* bpo-44954: Fix wrong result in float.fromhex corner case (GH-27834)Miss Islington (bot)2021-08-201-2/+2
* bpo-44698: Restore complex pow behaviour for small integral exponents (GH-277...Miss Islington (bot)2021-08-171-21/+7
* bpo-33930: Fix segfault with deep recursion when cleaning method objects (GH-...Miss Islington (bot)2021-08-111-1/+5
* bpo-44872: use new trashcan macros in framobject.c (GH-27683) (GH-27690)Irit Katriel2021-08-101-2/+2
* bpo-44662: Add ability to annotate types.Union (GH-27214) (GH-27461)Miss Islington (bot)2021-07-301-1/+23
* bpo-44707: Fix an undefined behavior of the null pointer arithmetic (GH-27292...Miss Islington (bot)2021-07-291-2/+9
* bpo-41103: Resurrect the old buffer protocol. (GH-27437) (GH-27441)Miss Islington (bot)2021-07-291-0/+79
* bpo-44657: Fix instancemethod_call to use PyInstanceMethod_GET_FUNCTION (GH-2...Miss Islington (bot)2021-07-281-1/+1
* bpo-34013: Move the Python 2 hints from the exception constructor to the pars...Miss Islington (bot)2021-07-271-201/+0
* bpo-44698: Fix undefined behaviour in complex exponentiation. (GH-27278) (#27...Miss Islington (bot)2021-07-261-8/+15
* bpo-44732: Rename types.Union to types.UnionType (GH-27342)Miss Islington (bot)2021-07-261-3/+3
* bpo-44676: Serialize the union type using only public API (GH-27323) (GH-27340)Miss Islington (bot)2021-07-241-48/+0
* bpo-44731: Simplify the union type implementation (GH-27318) (GH-27334)Ken Jin2021-07-241-81/+7
* [3.10] bpo-44676: Add ability to serialize types.Union (GH-27244) (GH-27333)Pablo Galindo Salgado2021-07-241-0/+51
* bpo-44720: Don't crash when calling weakref.proxy(not_an_iterator).__next__ (...Miss Islington (bot)2021-07-241-0/+6
* bpo-42747: Remove Py_TPFLAGS_HAVE_AM_SEND and make Py_TPFLAGS_HAVE_VERSION_TA...Miss Islington (bot)2021-07-233-30/+6
* bpo-44653: Support typing types in parameter substitution in the union type. ...Miss Islington (bot)2021-07-231-13/+12
* bpo-44633: Fix parameter substitution of the union type with wrong types. (GH...Miss Islington (bot)2021-07-181-16/+28
* [3.10] bpo-44654: Refactor and clean up the union type implementation (GH-271...Miss Islington (bot)2021-07-185-99/+55
* [3.10] bpo-44490: Add __parameters__ and __getitem__ to types.Union (GH-26980...Serhiy Storchaka2021-07-172-19/+84
* [3.10] bpo-44652: Preserve natural order of args in the union type. (GH-27185...Serhiy Storchaka2021-07-161-2/+2
* [3.10] bpo-44636: Collapse union of equal types (GH-27178) (GH-27181)Serhiy Storchaka2021-07-161-8/+16
* bpo-44646: Fix the hash of the union type. (GH-27179) (#27180)Miss Islington (bot)2021-07-161-4/+6
* bpo-44184: Apply GH-26274 to the non-GC-type branch of subtype_dealloc (GH-27...Miss Islington (bot)2021-07-161-3/+11
* bpo-42073: allow classmethod to wrap other classmethod-like descriptors (GH-2...Miss Islington (bot)2021-07-151-1/+1
* bpo-44632: Fix support of TypeVar in the union type (GH-27139) (GH-27143)Miss Islington (bot)2021-07-151-1/+1
* [3.10] bpo-44635: Convert None to NoneType in the union type constructor (GH-...Serhiy Storchaka2021-07-151-9/+7
* bpo-44606: Fix __instancecheck__ and __subclasscheck__ for the union type. (G...Miss Islington (bot)2021-07-131-4/+19
* bpo-44562: Use PyType_GenericAlloc in Py_GenericAlias (GH-27021)Miss Islington (bot)2021-07-051-2/+2
* bpo-44562: Remove invalid PyObject_GC_Del from error path of types.GenericAli...Miss Islington (bot)2021-07-041-3/+3
* bpo-44553: Correct failure in tp_new for the union object (GH-27008) (GH-27009)Miss Islington (bot)2021-07-031-2/+2
* bpo-44553 : Implement GC methods for types.Union (GH-26993)Miss Islington (bot)2021-07-031-4/+17
* bpo-44523: Remove the pass-through for hash() in weakref proxy objects (GH-26...Miss Islington (bot)2021-06-291-16/+2
* bpo-44483: Fix crash in union object with bad ``__module__`` (GH-26848) (GH-2...Miss Islington (bot)2021-06-231-3/+14
* [3.10] Fix a potential reference-counting bug in long_pow (GH-26690) (GH-26703)Mark Dickinson2021-06-131-0/+1
* [3.10] Add more const modifiers. (GH-26691). (GH-26692)Serhiy Storchaka2021-06-122-4/+4
* bpo-44232: Fix type_new() error reporting (GH-26359) (GH-26365)Miss Islington (bot)2021-05-261-0/+4
* bpo-44184: Fix subtype_dealloc() for freed type (GH-26274) (GH-26290)Miss Islington (bot)2021-05-221-2/+9
* bpo-44114: Remove redundant cast. (GH-26098)Miss Islington (bot)2021-05-131-2/+2
* bpo-44114: Fix dictkeys_reversed and dictvalues_reversed function signatures ...Miss Islington (bot)2021-05-131-4/+4
* bpo-43916: Move the _PyStructSequence_InitType function to the internal API (...Pablo Galindo2021-05-031-0/+1
* bpo-43977: Make sure that tp_flags for pattern matching are inherited correct...Mark Shannon2021-05-031-6/+12
* bpo-43901: Fix refleaks in test_module (GH-25754)Pablo Galindo2021-04-301-4/+11
* bpo-43908: check_set_special_type_attr() checks Py_TPFLAGS_IMMUTABLETYPE (GH-...Erlend Egeberg Aasland2021-04-301-7/+11
* bpo-43667: Fix broken Unicode encoding in non-UTF locales on Solaris (GH-25096)Jakub KulĂ­k2021-04-301-0/+40
* bpo-43916: PyStdPrinter_Type uses Py_TPFLAGS_DISALLOW_INSTANTIATION (GH-25749)Victor Stinner2021-04-301-27/+4