summaryrefslogtreecommitdiffstats
path: root/Objects
Commit message (Expand)AuthorAgeFilesLines
* 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
* Simplify set entry insertion logic. (GH-19881)Raymond Hettinger2020-05-031-16/+2
* bpo-29587: allow chaining NULL exceptions in _gen_throw() (GH-19877)Chris Jerdonek2020-05-031-4/+5
* bpo-29587: Update gen.throw() to chain exceptions (#19823)Chris Jerdonek2020-05-021-0/+9
* Revert "bpo-29587: Enable implicit exception chaining with gen.throw() (GH-19...Victor Stinner2020-04-301-6/+0
* bpo-29587: Enable implicit exception chaining with gen.throw() (GH-19811)Chris Jerdonek2020-04-301-0/+6
* bpo-40228: More robust frame.setlineno. (GH-19437)Mark Shannon2020-04-291-312/+251
* bpo-40421: Add PyFrame_GetBack() function (GH-19765)Victor Stinner2020-04-291-0/+10
* bpo-40429: PyThreadState_GetFrame() returns a strong ref (GH-19781)Victor Stinner2020-04-291-4/+5
* bpo-40428: Remove PyTuple_ClearFreeList() function (GH-19769)Victor Stinner2020-04-297-51/+25
* bpo-40429: Refactor super_init() (GH-19776)Victor Stinner2020-04-291-64/+85
* bpo-40429: PyFrame_GetCode() now returns a strong reference (GH-19773)Victor Stinner2020-04-282-2/+3
* bpo-40429: PyFrame_GetCode() result cannot be NULL (GH-19772)Victor Stinner2020-04-283-31/+36
* bpo-40421: Add PyFrame_GetCode() function (GH-19757)Victor Stinner2020-04-282-2/+9
* bpo-40421: Add pyframe.h header file (GH-19755)Victor Stinner2020-04-281-2/+5
* bpo-40217: Clean code in PyType_FromSpec_Alloc and add NEWS entry (GH-19733)Pablo Galindo2020-04-271-9/+17
* bpo-40217: Ensure Py_VISIT(Py_TYPE(self)) is always called for PyType_FromSpe...Pablo Galindo2020-04-271-1/+83