summaryrefslogtreecommitdiffstats
path: root/Include
Commit message (Expand)AuthorAgeFilesLines
...
* gh-103015: Add entrypoint keyword param to sqlite3.Connection.load_extension ...Erlend E. Aasland2023-04-264-0/+6
* gh-87729: specialize LOAD_SUPER_ATTR_METHOD (#103809)Carl Meyer2023-04-254-38/+53
* gh-100227: Add a Granular Lock for _PyRuntime.imports.extensions.dict (gh-103...Eric Snow2023-04-251-0/+2
* gh-101659: Isolate "obmalloc" State to Each Interpreter (gh-101660)Eric Snow2023-04-249-7/+38
* gh-95795: Move types.next_version_tag to PyInterpreterState (gh-102343)Eric Snow2023-04-243-27/+44
* gh-87729: add LOAD_SUPER_ATTR instruction for faster super() (#103497)Carl Meyer2023-04-243-14/+27
* gh-103323: Get the "Current" Thread State from a Thread-Local Variable (gh-10...Eric Snow2023-04-243-12/+38
* gh-103091: Add PyUnstable_Type_AssignVersionTag (#103095)Brett Simmers2023-04-241-0/+7
* gh-84436: Implement Immortal Objects (gh-19474)Eddie Elizondo2023-04-229-50/+179
* gh-102856: Initial implementation of PEP 701 (#102855)Pablo Galindo Salgado2023-04-191-8/+14
* GH-103488: Use return-offset, not yield-offset. (GH-103502)Mark Shannon2023-04-131-2/+8
* GH-103082: Implementation of PEP 669: Low Impact Monitoring for CPython (GH-1...Mark Shannon2023-04-129-179/+325
* gh-77757: replace exception wrapping by PEP-678 notes in typeobject's __set_n...Irit Katriel2023-04-111-0/+2
* gh-91276: remove unused _PyOpcode_RelativeJump (#103156)Irit Katriel2023-04-112-17/+1
* gh-87092: move assembler related code from compile.c to assemble.c (#103277)Irit Katriel2023-04-112-3/+47
* Remove useless symbol in pystats.h (#101864)Stepfen Shawn2023-04-091-2/+0
* gh-102213: Revert "gh-102213: Optimize the performance of `__getattr__` (GH-...Nikita Sobolev2023-04-071-1/+0
* gh-101659: Add _Py_AtExit() (gh-103298)Eric Snow2023-04-064-18/+64
* GH-88691: Shrink the CALL caches (GH-103230)Brandt Bucher2023-04-052-2/+1
* gh-99069: Consolidate checks for static_assert (#94766)Joshua Root2023-04-051-13/+16
* Post 3.12.0a7Thomas Wouters2023-04-041-1/+1
* Python 3.12.0a7v3.12.0a7Thomas Wouters2023-04-041-2/+2
* gh-102192: deprecate _PyErr_ChainExceptions (#102935)Irit Katriel2023-04-011-1/+1
* gh-87092: move CFG related code from compile.c to flowgraph.c (#103021)Irit Katriel2023-03-314-2/+228
* gh-100227: Make the Global PyModuleDef Cache Safe for Isolated Interpreters (...Eric Snow2023-03-293-7/+23
* GH-89987: Shrink the BINARY_SUBSCR caches (GH-103022)Brandt Bucher2023-03-293-3/+12
* gh-100227: Move the Dict of Interned Strings to PyInterpreterState (gh-102339)Eric Snow2023-03-284-674/+669
* gh-100227: Revert gh-102925 "gh-100227: Make the Global Interned Dict Safe fo...Eric Snow2023-03-274-13/+0
* gh-99726: Fix order of recently added fields for FILE_STAT_BASIC_INFORMATION ...Steve Dower2023-03-231-1/+1
* GH-100982: Break up COMPARE_AND_BRANCH (GH-102801)Brandt Bucher2023-03-233-22/+20
* gh-100227: Make the Global Interned Dict Safe for Isolated Interpreters (gh-1...Eric Snow2023-03-234-0/+13
* gh-102859: Remove JUMP_IF_FALSE_OR_POP and JUMP_IF_TRUE_OR_POP (#102870)Irit Katriel2023-03-222-21/+19
* GH-101291: Rearrange the size bits in PyLongObject (GH-102464)Mark Shannon2023-03-225-30/+161
* gh-102406: replace exception chaining by PEP-678 notes in codecs (#102407)Irit Katriel2023-03-211-18/+0
* gh-102304: Move the Total Refcount to PyInterpreterState (gh-102545)Eric Snow2023-03-214-7/+20
* gh-98608: Stop Treating All Errors from _Py_NewInterpreterFromConfig() as Fat...Eric Snow2023-03-213-4/+4
* gh-102755: PyErr_DisplayException only in ABI >= 3.12. Tests cover PyErr_Disp...Irit Katriel2023-03-211-0/+3
* gh-102304: Move _Py_RefTotal to _PyRuntimeState (gh-102543)Eric Snow2023-03-205-9/+34
* gh-102778: Add sys.last_exc, deprecate sys.last_type, sys.last_value,sys.last...Irit Katriel2023-03-184-0/+6
* gh-102755: Add PyErr_DisplayException(exc) (#102756)Irit Katriel2023-03-162-0/+2
* gh-99726: Improves correctness of stat results for Windows, and uses faster A...Steve Dower2023-03-162-1/+84
* gh-102594: PyErr_SetObject adds note to exception raised on normalization err...Irit Katriel2023-03-161-0/+4
* gh-102660: Handle m_copy Specially for the sys and builtins Modules (gh-102661)Eric Snow2023-03-141-0/+1
* GH-94851: check unicode consistency of static strings in debug mode (#102684)Kumar Aditya2023-03-141-0/+664
* gh-102013: Add PyUnstable_GC_VisitObjects (#102014)Jacob Bower2023-03-141-0/+19
* gh-102213: Optimize the performance of `__getattr__` (GH-102248)wangxiang-hz2023-03-111-0/+1
* GH-90997: Shrink the LOAD_GLOBAL caches (#102569)Brandt Bucher2023-03-112-2/+2
* gh-102519: Add os.listdrives, os.listvolumes and os.listmounts on Windows (GH...Steve Dower2023-03-104-0/+5
* gh-102255: Improve build support for Windows API partitions (GH-102256)Max Bachmann2023-03-091-0/+8
* gh-100227: Isolate the Import State to Each Interpreter (gh-101941)Eric Snow2023-03-093-25/+23