summaryrefslogtreecommitdiffstats
path: root/Objects
Commit message (Expand)AuthorAgeFilesLines
* [3.11] GH-92678: Expose managed dict clear and visit functions (GH-95246). (#...Pablo Galindo Salgado2022-07-251-0/+29
* [3.11] GH-94739: Backport GH-94958 to 3.11 (#94965)Mark Shannon2022-07-251-20/+170
* gh-95173: Revert commit 51ed2c56a1852cd6b09c85ba81312dc9782772ce (GH-95176)Miss Islington (bot)2022-07-241-64/+13
* GH-94438: Handle extended arguments and conditional pops in mark_stacks (GH-9...Miss Islington (bot)2022-07-221-4/+9
* [3.11] GH-95113: Don't use EXTENDED_ARG_QUICK in unquickened code (GH-95121) ...Brandt Bucher2022-07-221-1/+1
* [3.11] GH-95060: Fix PyCode_Addr2Location when addrq < 0 (GH-95094)Miss Islington (bot)2022-07-211-0/+1
* GH-90699: fix ref counting of static immortal strings (gh-94850)Miss Islington (bot)2022-07-201-1/+2
* GH-91153: Handle mutating __index__ methods in bytearray item assignment (GH-...Miss Islington (bot)2022-07-191-11/+25
* gh-94841: Ensure arena_map_get() is inlined in PyObject_Free() (GH-94842)Miss Islington (bot)2022-07-141-1/+1
* gh-94607: Fix subclassing generics (GH-94610)Miss Islington (bot)2022-07-091-0/+4
* [3.11] gh-94438: in frameobject's mark_stacks switch, the PUSH_EXC_INFO and P...Irit Katriel2022-07-061-8/+10
* [3.11] GH-94262: Don't create frame objects for frames that aren't yet comple...Miss Islington (bot)2022-07-042-8/+13
* [3.11] GH-94438: Backport GH-94444 (#94486)Mark Shannon2022-07-011-13/+35
* [3.11] GH-93516: Backport GH-93769 (GH-94231)Mark Shannon2022-06-281-0/+6
* gh-88116: Avoid undefined behavior when decoding varints in code objects (GH-...Miss Islington (bot)2022-06-281-8/+8
* [3.11] GH-91742: Fix pdb crash after jump (GH-94171) (#94176)Miss Islington (bot)2022-06-231-1/+1
* [3.11] gh-93382: Cache result of `PyCode_GetCode` in codeobject (GH-93383) (#...Ken Jin2022-06-231-0/+8
* [3.11] GH-93516: Backport GH-93769: Speedup line number checks when tracing (...Mark Shannon2022-06-221-0/+56
* gh-93021: Fix __text_signature__ for __get__ (GH-93023) (GH-94085)Miss Islington (bot)2022-06-211-2/+2
* GH-93249: relax overly strict assertion on bounds->ar_start (GH-93961) (GH-94...Miss Islington (bot)2022-06-201-1/+6
* gh-93937, C API: Move PyFrame_GetBack() to Python.h (#93938) (#94000)Victor Stinner2022-06-202-2/+0
* gh-84461: Silence some compiler warnings on WASM (GH-93978)Miss Islington (bot)2022-06-201-1/+1
* GH-93990: fix refcounting bug in `add_subclass` in `typeobject.c` (GH-93989)Miss Islington (bot)2022-06-191-1/+4
* gh-89828: Do not relay the __class__ attribute in GenericAlias (GH-93754)Miss Islington (bot)2022-06-181-0/+1
* gh-92888: Fix memoryview bad `__index__` use after free (GH-92946)Miss Islington (bot)2022-06-181-19/+36
* gh-92914: Round the allocated size for lists up to the even number (GH-92915)Miss Islington (bot)2022-06-141-0/+6
* gh-79512: Fixed names and __module__ value of weakref classes (GH-93719)Miss Islington (bot)2022-06-141-3/+3
* [3.11] gh-91162: Support splitting of unpacked arbitrary-length tuple over Ty...Miss Islington (bot)2022-06-141-56/+43
* Fix missing word in sys.float_info docstring (GH-93489) (GH-93495)Miss Islington (bot)2022-06-041-1/+1
* gh-93345: Fix a crash in substitution of nested TypeVar after TypeVarTuple (G...Miss Islington (bot)2022-06-011-1/+1
* [3.11] gh-91162: Fix substitution of unpacked tuples in generic aliases (GH-9...Miss Islington (bot)2022-06-011-13/+108
* [3.11] bpo-40514: Drop EXPERIMENTAL_ISOLATED_SUBINTERPRETERS (gh-93185) (GH-9...Eric Snow2022-05-282-40/+3
* GH-92804: Fix memory leak in memoryview iterator (gh-92805)Miss Islington (bot)2022-05-142-3/+5
* Issues/88027: A potential double free in list_sort_impl (#92367)Tim Peters2022-05-061-1/+3
* gh-92112: Fix crash triggered by an evil custom `mro()` (#92113)Alexey Izbyshev2022-05-061-9/+11
* gh-87390: Fix starred tuple equality and pickling (GH-92337)Serhiy Storchaka2022-05-051-0/+26
* bpo-43857: Improve the AttributeError message when deleting a missing attribu...Géry Ogam2022-05-052-5/+17
* bpo-46764: Fix wrapping bound method with @classmethod (#31367)Michael J. Sullivan2022-05-051-8/+0
* Use static inline function Py_EnterRecursiveCall() (#91988)Victor Stinner2022-05-047-45/+46
* Add more stats for freelist use and allocations. (GH-92211)Mark Shannon2022-05-036-0/+28
* gh-91320: Use _PyCFunction_CAST() (#92251)Victor Stinner2022-05-036-17/+17
* gh-91320: Argument Clinic uses _PyCFunction_CAST() (#32210)Victor Stinner2022-05-0312-77/+77
* gh-92031: Deoptimize Static Code at Finalization (GH-92039)Dennis Sweeney2022-05-031-10/+17
* gh-92154: Expose PyCode_GetCode in the C API (GH-92168)Ken Jin2022-05-031-0/+5
* Fix the closure argument to PyEval_EvalCodeEx. (GH-92175)larryhastings2022-05-021-1/+2
* gh-87390: Add __unpacked__ attribute to types.GenericAlias (#92059)Jelle Zijlstra2022-05-021-0/+2
* gh-90213: Speed up right shifts of negative integers (GH-30277)Mark Dickinson2022-05-021-29/+69
* bpo-36819: Fix crashes in built-in encoders with weird error handlers (GH-28593)Serhiy Storchaka2022-05-022-23/+52
* gh-92114: Improve error message for types with __class_getitem__ = None (GH-9...Serhiy Storchaka2022-05-021-1/+2
* gh-81548: Deprecate octal escape sequences with value larger than 0o377 (GH-9...Serhiy Storchaka2022-04-302-10/+48