summaryrefslogtreecommitdiffstats
path: root/Objects
Commit message (Expand)AuthorAgeFilesLines
* GH-100222: Redefine _Py_CODEUNIT as a union to clarify structure of code unit...Mark Shannon2022-12-141-5/+6
* clarify the 4300-digit limit on int-str conversion (#100175)Ned Batchelder2022-12-121-2/+2
* GH-98522: Add version number to code objects. (GH-98525)Mark Shannon2022-12-092-4/+5
* GH-100110: Specialize FOR_ITER for tuples (GH-100109)Ken Jin2022-12-091-14/+9
* gh-81057: Move More Globals to _PyRuntimeState (gh-100092)Eric Snow2022-12-072-4/+7
* bpo-15999: Accept arbitrary values for boolean parameters. (#15609)Serhiy Storchaka2022-12-038-20/+20
* GH-91054: Add code object watchers API (GH-99859)Itamar Ostricher2022-12-021-0/+63
* gh-99612: Fix PyUnicode_DecodeUTF8Stateful() for ASCII-only data (GH-99613)Serhiy Storchaka2022-12-011-0/+3
* gh-89189: More compact range iterator (GH-27986)Serhiy Storchaka2022-11-301-37/+42
* gh-99845: Use size_t type in __sizeof__() methods (#99846)Victor Stinner2022-11-303-14/+11
* gh-99845: Clean up _PyObject_VAR_SIZE() usage (#99847)Victor Stinner2022-11-292-11/+12
* gh-99845: Change _PyDict_KeysSize() return type to size_t (#99848)Victor Stinner2022-11-292-34/+30
* gh-89682: [doc] reword docstring of __contains__ to clarify that it returns a...Ivan Savov2022-11-261-1/+1
* gh-98724: Fix warnings on Py_SETREF() usage (#99781)Victor Stinner2022-11-252-2/+2
* gh-99537: Use Py_SETREF(var, NULL) in C code (#99687)Victor Stinner2022-11-235-26/+13
* gh-99537: Use Py_SETREF() function in C code (#99657)Victor Stinner2022-11-2211-51/+23
* gh-91053: Add an optional callback that is invoked whenever a function is mod...mpage2022-11-221-0/+68
* gh-99537: Use Py_SETREF() function in longobject C code (#99655)Victor Stinner2022-11-221-49/+24
* gh-99553: fix bug where an ExceptionGroup subclass can wrap a BaseException (...Irit Katriel2022-11-181-1/+13
* gh-99443: `descr_set_trampoline_call` return type should be `int` not `PyObje...Hood Chatham2022-11-161-1/+1
* Remove old comment (GH-99489)Brandt Bucher2022-11-161-9/+0
* gh-81057: Move the global Dict-Related Versions to _PyRuntimeState (gh-99497)Eric Snow2022-11-164-18/+11
* gh-99300: Replace Py_INCREF() with Py_NewRef() (#99530)Victor Stinner2022-11-168-35/+17
* gh-81057: Move More Globals in Core Code to _PyRuntimeState (gh-99516)Eric Snow2022-11-163-14/+34
* gh-99300: Replace Py_INCREF() with Py_NewRef() (#99513)Victor Stinner2022-11-163-16/+8
* gh-81057: Move Globals in Core Code to _PyRuntimeState (gh-99496)Eric Snow2022-11-152-7/+1
* gh-81057: Move Global Variables Holding Objects to _PyRuntimeState. (gh-99487)Eric Snow2022-11-141-25/+20
* gh-91248: Optimize PyFrame_GetVar() (#99252)Victor Stinner2022-11-131-95/+136
* gh-81057: Move the Allocators to _PyRuntimeState (gh-99217)Eric Snow2022-11-111-868/+202
* gh-81057: Move the Extension Modules Cache to _PyRuntimeState (gh-99355)Eric Snow2022-11-111-3/+2
* gh-99300: Use Py_NewRef() in Objects/ directory (#99354)Victor Stinner2022-11-1013-128/+66
* gh-99300: Use Py_NewRef() in Objects/ directory (#99351)Victor Stinner2022-11-105-188/+100
* gh-99300: Use Py_NewRef() in Objects/ directory (#99335)Victor Stinner2022-11-108-244/+120
* gh-99300: Use Py_NewRef() in Objects/listobject.c (#99336)Victor Stinner2022-11-101-40/+20
* gh-99300: Use Py_NewRef() in Objects/dictobject.c (#99333)Victor Stinner2022-11-101-92/+48
* gh-99300: Use Py_NewRef() in Objects/ directory (#99332)Victor Stinner2022-11-109-156/+77
* GH-96421: Insert shim frame on entry to interpreter (GH-96319)Mark Shannon2022-11-104-23/+99
* gh-90868: Adjust the Generated Objects (gh-99223)Eric Snow2022-11-081-1/+1
* gh-91248: Add PyFrame_GetVar() function (#95712)Victor Stinner2022-11-081-0/+30
* GH-93143: Don't turn LOAD_FAST into LOAD_FAST_CHECK (GH-99075)Brandt Bucher2022-11-081-44/+36
* gh-99181: fix except* on unhashable exceptions (GH-99192)Irit Katriel2022-11-081-17/+26
* GH-96793: Specialize FOR_ITER for generators. (GH-98772)Mark Shannon2022-11-071-4/+4
* Correct some typos in comments (GH-98194)jonasdlindner2022-11-061-1/+1
* gh-98284: better error message for undefined abstractmethod (#97971)Kaushik Kulkarni2022-11-051-6/+13
* gh-90716: Fix pylong_int_from_string() refleak (#99094)Victor Stinner2022-11-041-0/+1
* gh-90716: bugfixes and more tests for _pylong. (#99073)Gregory P. Smith2022-11-031-4/+11
* GH-96793: Implement PEP 479 in bytecode. (GH-99006)Mark Shannon2022-11-031-19/+3
* GH-98686: Quicken everything (GH-98687)Brandt Bucher2022-11-023-13/+8
* gh-98852: Fix subscription of type aliases (GH-98920)Serhiy Storchaka2022-11-011-0/+7
* gh-98783: Fix crashes when `str` subclasses are used in `_PyUnicode_Equal` (#...Nikita Sobolev2022-10-301-2/+2