summaryrefslogtreecommitdiffstats
path: root/Objects
Commit message (Expand)AuthorAgeFilesLines
* gh-119180: Add LOAD_COMMON_CONSTANT opcode (#119321)Jelle Zijlstra2024-05-221-1/+1
* gh-111389: Add PyHASH_MULTIPLIER constant (#119214)Victor Stinner2024-05-211-1/+1
* gh-109176: replace _PyFrame_OpAlreadyRan by an assertion that the frame is co...Irit Katriel2024-05-211-33/+2
* gh-119053: Implement the fast path for list.__getitem__ (gh-119112)Donghee Na2024-05-211-5/+10
* gh-118921: Add `copy()` method for `FrameLocalsProxy` (#118923)Tian Gao2024-05-101-0/+19
* gh-118702: Implement vectorcall for BaseException (#118703)Victor Stinner2024-05-101-0/+40
* Rename `notimplemented_methods` into `nodefault_methods` (#118896)Nikita Sobolev2024-05-101-4/+4
* Fix some missing null checks. (GH-118721)Steve Dower2024-05-101-5/+8
* gh-118561: Fix crash involving list.extend in free-threaded build (#118723)Sam Gross2024-05-091-1/+2
* gh-118849: Fix "code will never be executed" warning in `dictobject.c` (#118850)Nikita Sobolev2024-05-091-1/+1
* gh-117657: Fix data races when writing / reading `ob_gc_bits` (#118292)mpage2024-05-081-1/+1
* gh-118767: Make bool(NotImplemented) raise TypeError (#118775)Jelle Zijlstra2024-05-081-7/+3
* gh-118746: Fix crash in frame_getlocals and _PyFrame_GetLocals (#118748)Tian Gao2024-05-081-0/+18
* gh-110209: Add __class_getitem__ for generator and coroutine (#110212)James Hilton-Balfe2024-05-071-0/+2
* gh-118527: Intern code consts in free-threaded build (#118667)Sam Gross2024-05-072-14/+294
* gh-112075: Fix race in constructing dict for instance (#118499)Dino Viehland2024-05-062-70/+74
* gh-118527: Intern code name and filename on default build (#118576)Sam Gross2024-05-061-2/+0
* GH-115709: Invalidate executors when a local variable is changed via frame.f_...Mark Shannon2024-05-061-1/+2
* gh-118362: Fix thread safety around lookups from the type cache in the face o...Dino Viehland2024-05-064-118/+263
* GH-117714: implement athrow().close() and asend().close() using throw (GH-117...Thomas Grainger2024-05-061-4/+38
* gh-116322: Rename PyModule_ExperimentalSetGIL to PyUnstable_Module_SetGIL (GH...Petr Viktorin2024-05-061-1/+1
* gh-118609: Add proper error check for framelocalsproxy (#118615)Tian Gao2024-05-061-46/+99
* gh-74929: Make containment checks more efficient in `FrameLocalsProxy` (#118624)Tian Gao2024-05-061-10/+19
* gh-118605: Fix reference leak in FrameLocalsProxy (#118607)Tian Gao2024-05-051-3/+28
* gh-74929: Remove undesirable DECREF in PEP 667 implementation (#118583)Tian Gao2024-05-051-1/+0
* gh-74929: Implement PEP 667 (GH-115153)Tian Gao2024-05-042-199/+662
* gh-118527: Intern filename, name, and qualname in code objects. (#118558)Sam Gross2024-05-031-0/+5
* gh-117657: Disable the function/code cache in free-threaded builds (#118301)mpage2024-05-032-0/+16
* gh-118527: Use deferred reference counting for C functions on modules (#118529)Sam Gross2024-05-031-0/+1
* gh-116322: Add Py_mod_gil module slot (#116882)Brett Simmers2024-05-032-0/+36
* gh-116126: Implement PEP 696 (#116129)Jelle Zijlstra2024-05-032-47/+450
* gh-116738: Make `_codecs` module thread-safe (#117530)Brett Simmers2024-05-021-1/+5
* gh-118519: Fix empty weakref list check (#118520)Dino Viehland2024-05-021-1/+1
* gh-117657: Fix TSAN list set failure (#118260)Dino Viehland2024-05-021-3/+6
* gh-93502: Add new C-API functions to trace object creation and destruction (#...Pablo Galindo Salgado2024-05-021-6/+31
* GH-118095: Make invalidating and clearing executors memory safe (GH-118459)Mark Shannon2024-05-011-1/+2
* GH-117881: fix athrow().throw()/asend().throw() concurrent access (GH-117882)Thomas Grainger2024-05-011-0/+37
* gh-118335: Configure Tier 2 interpreter at build time (#118339)Guido van Rossum2024-05-012-0/+10
* [gh-117657] Fix some issues with TSAN in typeobject (#118249)Dino Viehland2024-04-301-6/+11
* gh-117657: Fix small issues with instrumentation and TSAN (#118064)Dino Viehland2024-04-301-3/+5
* gh-118272: Clear generator frame's locals when the generator is closed (#118277)Irit Katriel2024-04-301-0/+1
* gh-118331: Handle errors in _PyObject_SetManagedDict (#118334)Sam Gross2024-04-292-12/+19
* gh-117783: Immortalize objects that use deferred reference counting (#118112)Sam Gross2024-04-291-0/+7
* gh-118331: Don't raise an error if tuple allocation fails when clearing weakr...mpage2024-04-291-1/+3
* gh-107674: Lazy load line number to improve performance of tracing (GH-118127)Tian Gao2024-04-291-4/+12
* gh-112075: _Py_dict_lookup needs to lock shared keys (#117528)Dino Viehland2024-04-251-127/+158
* gh-117657: Fixes a few small TSAN issues in dictobject (#118200)Dino Viehland2024-04-251-11/+14
* gh-112069: Do not require lock if the set has never been exposed. (gh-118069)Donghee Na2024-04-251-0/+7
* gh-117578: Introduce _PyType_GetModuleByDef2 private function (GH-117661)neonene2024-04-251-7/+45
* GH-118095: Handle `RETURN_GENERATOR` in tier 2 (GH-118180)Mark Shannon2024-04-251-5/+0