summaryrefslogtreecommitdiffstats
path: root/Objects
Commit message (Expand)AuthorAgeFilesLines
* bpo-42412: Fix possible leaks and check arguments in PyType_FromModuleAndSpec...Miss Islington (bot)2020-11-211-5/+18
* bpo-40998: Address compiler warnings found by ubsan (GH-20929)Miss Islington (bot)2020-11-181-1/+5
* [3.9] bpo-42332: Add weakref slot to types.GenericAlias (GH-23250) (GH-23309)kj2020-11-171-0/+6
* Fix typo in unicodeobject.c (GH-23180)Miss Islington (bot)2020-11-101-1/+1
* bpo-42143: Ensure PyFunction_NewWithQualName() can't fail after creating the ...Miss Skeleton (bot)2020-10-291-13/+16
* bpo-42065: Fix incorrectly formatted _codecs.charmap_decode error message (GH...Miss Skeleton (bot)2020-10-181-1/+1
* bpo-41984: GC track all user classes (GH-22701/GH-22702)Miss Skeleton (bot)2020-10-151-16/+6
* bpo-42015: Reorder dereferencing calls in meth_dealloc, to make sure m_self i...Miss Skeleton (bot)2020-10-121-2/+4
* Fix the attribute names in the docstring of GenericAlias (GH-22594)Miss Skeleton (bot)2020-10-081-1/+1
* [3.9] bpo-41909: Enable previously disabled recursion checks. (GH-22536) (GH-...Serhiy Storchaka2020-10-042-4/+0
* bpo-41780: Fix __dir__ of types.GenericAlias (GH-22262)Miss Islington (bot)2020-09-151-0/+39
* bpo-29590: fix stack trace for gen.throw() with yield from (GH-19896)Miss Islington (bot)2020-09-041-0/+10
* [3.9] bpo-41654: Fix deallocator of MemoryError to account for subclasses (GH...Pablo Galindo2020-09-011-2/+12
* bpo-41295: Reimplement the Carlo Verre "hackcheck" (GH-21528)Miss Islington (bot)2020-07-181-7/+20
* bpo-41175: Guard against a NULL pointer dereference within bytearrayobject (G...Miss Islington (bot)2020-07-101-1/+3
* bpo-39960: Allow heap types in the "Carlo Verre" hack check that override "tp...Miss Islington (bot)2020-07-031-11/+30
* bpo-40824: Do not mask errors in __iter__ in "in" and the operator module. (G...Miss Islington (bot)2020-06-221-1/+3
* bpo-36346: Add Py_DEPRECATED to deprecated unicode APIs (GH-20878)Inada Naoki2020-06-181-0/+23
* bpo-40703: Let PyType_FromSpec() set "type.__module__" only if it is not set ...Miss Islington (bot)2020-06-101-15/+20
* bpo-40724: Support setting buffer slots from type specs (GH-20648) (GH-20683)Miss Islington (bot)2020-06-071-2/+2
* bpo-40217: Ensure Py_VISIT(Py_TYPE(self)) is always called for PyType_FromSp...Miss Islington (bot)2020-05-282-93/+11
* Remove spurious NULL in descrobject.c (GH-20344)Miss Islington (bot)2020-05-241-1/+0
* bpo-40696: Fix a hang that can arise after gen.throw() (GH-20287)Miss Islington (bot)2020-05-221-4/+6
* [3.9] bpo-40514: Remove --with-experimental-isolated-subinterpreters in 3.9 (...Victor Stinner2020-05-196-40/+4
* Use _PyErr_ChainStackItem() inside gen_send_ex(). (GH-20173) (#20202)Miss Islington (bot)2020-05-191-10/+2
* bpo-31033: Improve the traceback for cancelled asyncio tasks (GH-19951)Chris Jerdonek2020-05-181-17/+3
* bpo-39075: types.SimpleNamespace no longer sorts attributes in its repr (GH-1...Zackery Spytz2020-05-161-2/+0
* bpo-40521: Add PyInterpreterState.unicode (GH-20081)Victor Stinner2020-05-131-31/+33
* bpo-29587: Make gen.throw() chain exceptions with yield from (GH-19858)Chris Jerdonek2020-05-131-10/+12
* bpo-39465: Remove _PyUnicode_ClearStaticStrings() from C API (GH-20078)Victor Stinner2020-05-131-3/+3
* bpo-38787: Add PyCFunction_CheckExact() macro for exact type checks (GH-20024)scoder2020-05-121-1/+1
* bpo-40596: Fix str.isidentifier() for non-canonicalized strings containing no...Serhiy Storchaka2020-05-121-4/+22
* bpo-40593: Improve syntax errors for invalid characters in source code. (GH-2...Serhiy Storchaka2020-05-121-23/+41
* bpo-39465: Don't access directly _Py_Identifier members (GH-20043)Victor Stinner2020-05-112-8/+8
* bpo-40584: Update PyType_FromModuleAndSpec() to process tp_vectorcall_offset ...Hai Shi2020-05-111-2/+12
* bpo-40575: Avoid unnecessary overhead in _PyDict_GetItemIdWithError() (GH-20018)scoder2020-05-111-1/+3
* Improve code clarity for the set lookup logic (GH-20028)Raymond Hettinger2020-05-101-125/+55
* bpo-37986: Improve perfomance of PyLong_FromDouble() (GH-15611)Sergey Fedoseev2020-05-102-23/+17
* bpo-40273: Reversible mappingproxy (FH-19513)Zackery Spytz2020-05-081-0/+9
* bpo-38787: C API for module state access from extension methods (PEP 573) (GH...Petr Viktorin2020-05-074-12/+182
* bpo-40521: Disable list free list in subinterpreters (GH-19959)Victor Stinner2020-05-061-1/+8
* bpo-40521: Disable method cache in subinterpreters (GH-19960)Victor Stinner2020-05-061-3/+19
* bpo-40523: Add pass-throughs for hash() and reversed() to weakref.proxy objec...Pablo Galindo2020-05-051-1/+18
* bpo-40521: Disable free lists in subinterpreters (GH-19937)Victor Stinner2020-05-053-80/+162
* bpo-40521: Disable Unicode caches in isolated subinterpreters (GH-19933)Victor Stinner2020-05-052-15/+79
* bpo-29587: _PyErr_ChainExceptions() checks exception (GH-19902)Victor Stinner2020-05-052-20/+34
* bpo-40455: Remove gcc10 warning about x_digits (#19852)Dong-hee Na2020-05-041-4/+3
* bpo-39573: Use Py_IS_TYPE to check for types (GH-19882)Hai Shi2020-05-042-3/+3
* bpo-40408: Fix support of nested type variables in GenericAlias. (GH-19836)Serhiy Storchaka2020-05-041-19/+104
* Remove out-of-date comment (GH-19886)Raymond Hettinger2020-05-031-2/+1