index
:
cpython.git
2.7
3.3
3.4
3.5
3.6
benjamin-clang
benjamin-iteration-torture
buildbot-custom
master
https://github.com/python/cpython.git
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
Include
Commit message (
Expand
)
Author
Age
Files
Lines
*
gh-99113: A Per-Interpreter GIL! (gh-104210)
Eric Snow
2023-05-08
4
-7/+4
*
gh-104223: Fix issues with inheriting from buffer classes (#104227)
Jelle Zijlstra
2023-05-08
2
-1/+3
*
gh-104240: make _PyCompile_CodeGen support different compilation modes (#104241)
Irit Katriel
2023-05-07
5
-1/+8
*
gh-104018: remove unused format "z" handling in string formatfloat() (#104107)
John Belmonte
2023-05-07
1
-2/+0
*
gh-99113: Make Sure the GIL is Acquired at the Right Places (gh-104208)
Eric Snow
2023-05-06
1
-0/+2
*
gh-99113: Add PyInterpreterConfig.own_gil (gh-104204)
Eric Snow
2023-05-05
3
-1/+5
*
gh-99113: Add Py_MOD_PER_INTERPRETER_GIL_SUPPORTED (gh-104205)
Eric Snow
2023-05-05
1
-0/+1
*
gh-104108: Add the Py_mod_multiple_interpreters Module Def Slot (gh-104148)
Eric Snow
2023-05-05
1
-1/+6
*
gh-99113: Share the GIL via PyInterpreterState.ceval.gil (gh-104203)
Eric Snow
2023-05-05
2
-1/+4
*
GH-96803: Add three C-API functions to make _PyInterpreterFrame less opaque f...
Mark Shannon
2023-05-05
2
-2/+17
*
GH-104142: Fix _Py_RefcntAdd to respect immortality (GH-104143)
Brandt Bucher
2023-05-05
1
-0/+3
*
gh-102500: Implement PEP 688 (#102521)
Jelle Zijlstra
2023-05-04
7
-1/+38
*
gh-104066: Improve performance of hasattr for module objects (#104063)
Itamar Ostricher
2023-05-04
1
-0/+3
*
gh-103323: Remove PyRuntimeState_GetThreadState() (#104171)
Victor Stinner
2023-05-04
1
-8/+2
*
gh-103509: PEP 697 -- Limited C API for Extending Opaque Types (GH-103511)
Petr Viktorin
2023-05-04
5
-5/+18
*
gh-104109: Expose Py_NewInterpreterFromConfig() in the Public C-API (gh-104110)
Eric Snow
2023-05-03
2
-3/+3
*
gh-94673: More Per-Interpreter Fields for Builtin Static Types (gh-103912)
Eric Snow
2023-05-03
1
-0/+7
*
GH-103963: Make dis display names of args for intrinsics opcodes (#104029)
Juhi Chandalia
2023-05-03
1
-14/+12
*
gh-103743: Add PyUnstable_Object_GC_NewWithExtraData (GH-103744)
Jurica Bradarić
2023-05-02
1
-0/+3
*
gh-94673: Hide Objects in PyTypeObject Behind Accessors (gh-104074)
Eric Snow
2023-05-02
2
-6/+14
*
gh-94673: Properly Initialize and Finalize Static Builtin Types for Each Inte...
Eric Snow
2023-05-02
4
-9/+14
*
gh-87092: Expose assembler to unit tests (#103988)
Irit Katriel
2023-05-01
5
-0/+10
*
gh-97696: asyncio eager tasks factory (#102853)
Itamar Ostricher
2023-05-01
4
-0/+12
*
gh-84436: Immortalize in _PyStructSequence_InitBuiltinWithFlags() (gh-104054)
Eric Snow
2023-05-01
1
-2/+2
*
Fix typo in "expected" word in few source files (#104034)
chgnrdv
2023-05-01
1
-1/+1
*
gh-98003: Inline call frames for CALL_FUNCTION_EX (GH-98004)
Ken Jin
2023-04-30
1
-0/+10
*
gh-87092: change assembler to use instruction sequence instead of CFG (#103933)
Irit Katriel
2023-04-29
2
-5/+12
*
GH-103082: Code cleanup in instrumentation code (#103474)
Mark Shannon
2023-04-29
1
-3/+3
*
gh-103978: avoid using 'class' as an identifier (#103979)
Carl Meyer
2023-04-28
1
-1/+1
*
gh-94673: Ensure Builtin Static Types are Readied Properly (gh-103940)
Eric Snow
2023-04-27
2
-6/+0
*
gh-102765: Update ntpath.isdir/isfile/islink/exists to use GetFileInformation...
Finn Womack
2023-04-27
1
-0/+18
*
gh-103015: Add entrypoint keyword param to sqlite3.Connection.load_extension ...
Erlend E. Aasland
2023-04-26
4
-0/+6
*
gh-87729: specialize LOAD_SUPER_ATTR_METHOD (#103809)
Carl Meyer
2023-04-25
4
-38/+53
*
gh-100227: Add a Granular Lock for _PyRuntime.imports.extensions.dict (gh-103...
Eric Snow
2023-04-25
1
-0/+2
*
gh-101659: Isolate "obmalloc" State to Each Interpreter (gh-101660)
Eric Snow
2023-04-24
9
-7/+38
*
gh-95795: Move types.next_version_tag to PyInterpreterState (gh-102343)
Eric Snow
2023-04-24
3
-27/+44
*
gh-87729: add LOAD_SUPER_ATTR instruction for faster super() (#103497)
Carl Meyer
2023-04-24
3
-14/+27
*
gh-103323: Get the "Current" Thread State from a Thread-Local Variable (gh-10...
Eric Snow
2023-04-24
3
-12/+38
*
gh-103091: Add PyUnstable_Type_AssignVersionTag (#103095)
Brett Simmers
2023-04-24
1
-0/+7
*
gh-84436: Implement Immortal Objects (gh-19474)
Eddie Elizondo
2023-04-22
9
-50/+179
*
gh-102856: Initial implementation of PEP 701 (#102855)
Pablo Galindo Salgado
2023-04-19
1
-8/+14
*
GH-103488: Use return-offset, not yield-offset. (GH-103502)
Mark Shannon
2023-04-13
1
-2/+8
*
GH-103082: Implementation of PEP 669: Low Impact Monitoring for CPython (GH-1...
Mark Shannon
2023-04-12
9
-179/+325
*
gh-77757: replace exception wrapping by PEP-678 notes in typeobject's __set_n...
Irit Katriel
2023-04-11
1
-0/+2
*
gh-91276: remove unused _PyOpcode_RelativeJump (#103156)
Irit Katriel
2023-04-11
2
-17/+1
*
gh-87092: move assembler related code from compile.c to assemble.c (#103277)
Irit Katriel
2023-04-11
2
-3/+47
*
Remove useless symbol in pystats.h (#101864)
Stepfen Shawn
2023-04-09
1
-2/+0
*
gh-102213: Revert "gh-102213: Optimize the performance of `__getattr__` (GH-...
Nikita Sobolev
2023-04-07
1
-1/+0
*
gh-101659: Add _Py_AtExit() (gh-103298)
Eric Snow
2023-04-06
4
-18/+64
*
GH-88691: Shrink the CALL caches (GH-103230)
Brandt Bucher
2023-04-05
2
-2/+1
[next]