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
/
cpython
Commit message (
Expand
)
Author
Age
Files
Lines
*
gh-107954, PEP 741: Add PyInitConfig_AddModule() function (#123668)
Victor Stinner
2024-09-04
1
-0/+4
*
gh-107954, PEP 741: Add PyInitConfig C API (#123502)
Victor Stinner
2024-09-03
1
-0/+41
*
gh-107954, PEP 741: Add PyConfig_Get()/Set() functions (#123472)
Victor Stinner
2024-09-02
1
-0/+8
*
gh-122854: Add Py_HashBuffer() function (#122855)
Victor Stinner
2024-08-30
1
-0/+2
*
gh-121645: Add PyBytes_Join() function (#121646)
Victor Stinner
2024-08-30
1
-3/+4
*
gh-121485: Always use 64-bit integers for integers bits count (GH-121486)
Serhiy Storchaka
2024-08-30
1
-2/+2
*
gh-122417: Implement per-thread heap type refcounts (#122418)
Sam Gross
2024-08-06
1
-0/+3
*
gh-120593: Make _PyLong_CompactValue() parameter const again (#122367)
Victor Stinner
2024-07-28
1
-4/+4
*
gh-121489: Export private _PyBytes_Join() again (#122267)
Marc Mueller
2024-07-25
1
-0/+4
*
gh-120973: Fix thread-safety issues with `threading.local` (#121655)
mpage
2024-07-19
1
-0/+8
*
gh-121621: Move asyncio_running_loop to private struct (#121939)
Sam Gross
2024-07-17
1
-2/+0
*
GH-121583: Remove dependency from pystats.h to internal header file (GH-121587)
Michael Droettboom
2024-07-16
1
-5/+5
*
gh-121621: Move asyncio running loop to thread state (GH-121695)
Ken Jin
2024-07-16
1
-0/+2
*
gh-120642: Move _PyCode_CODE() to the internal C API (#121644)
Victor Stinner
2024-07-13
1
-3/+0
*
gh-89364: Export PySignal_SetWakeupFd() function (#121537)
Victor Stinner
2024-07-10
1
-1/+1
*
gh-121368: Fix seq lock memory ordering in _PyType_Lookup (#121388)
Sam Gross
2024-07-08
4
-0/+26
*
gh-112136: Restore removed _PyArg_Parser (#121262)
Victor Stinner
2024-07-03
1
-0/+26
*
gh-121115: Skip __index__ in PyLong_AsNativeBytes by default (GH-121118)
Steve Dower
2024-06-28
1
-2/+5
*
gh-120593: Fix const qualifier in _PyLong_CompactValue() (#121053)
Victor Stinner
2024-06-26
1
-2/+2
*
gh-120593: Fix const qualifier in pyatomic.h (#121055)
Victor Stinner
2024-06-26
1
-4/+4
*
gh-120642: Move private PyCode APIs to the internal C API (#120643)
Victor Stinner
2024-06-26
2
-187/+0
*
gh-120838: Add _PyThreadState_WHENCE_FINI (gh-121010)
Eric Snow
2024-06-25
1
-4/+5
*
gh-119182: Add PyUnicodeWriter_WriteUCS4() function (#120849)
Victor Stinner
2024-06-24
1
-0/+4
*
gh-120834: fix type of *_iframe field in _PyGenObject_HEAD declaration (#120835)
Irit Katriel
2024-06-24
1
-30/+3
*
gh-119344: Make critical section API public (#119353)
Sam Gross
2024-06-21
1
-0/+134
*
gh-119182: Add PyUnicodeWriter_DecodeUTF8Stateful() (#120639)
Victor Stinner
2024-06-21
1
-0/+10
*
gh-117511: Make PyMutex public in the non-limited API (#117731)
Sam Gross
2024-06-20
2
-1/+64
*
gh-118789: Add `PyUnstable_Object_ClearWeakRefsNoCallbacks` (#118807)
Sam Gross
2024-06-18
1
-0/+2
*
gh-119182: Add PyUnicodeWriter C API (#119184)
Victor Stinner
2024-06-17
1
-2/+35
*
gh-83754: Use the Py_TYPE() macro (#120599)
Victor Stinner
2024-06-17
1
-2/+2
*
Fix typos in comments (#120188)
Xie Yanbo
2024-06-07
2
-2/+2
*
gh-116560: Add PyLong_GetSign() public function (#116561)
Sergey B Kirpichev
2024-06-03
1
-3/+7
*
gh-112026: Deprecate _PyDict_GetItemStringWithError() function (#119855)
Victor Stinner
2024-06-03
1
-1/+2
*
gh-119336: Restore removed _PyLong_NumBits() function (#119418)
Ethan Smith
2024-05-30
1
-0/+9
*
gh-118727: Don't drop the GIL in `drop_gil()` unless the current thread holds...
Brett Simmers
2024-05-23
1
-1/+3
*
gh-119180: PEP 649: Add __annotate__ attributes (#119209)
Jelle Zijlstra
2024-05-22
1
-0/+1
*
gh-118692: Avoid creating unnecessary StopIteration instances for monitoring ...
Irit Katriel
2024-05-21
1
-3/+3
*
gh-111389: Add PyHASH_MULTIPLIER constant (#119214)
Victor Stinner
2024-05-21
1
-2/+3
*
gh-118771: Ensure names defined in optimizer.h start with Py/_Py (GH-118825)
Petr Viktorin
2024-05-10
1
-35/+6
*
gh-118789: Restore hidden `_PyWeakref_ClearRef` (#118797)
Sam Gross
2024-05-10
1
-0/+2
*
gh-112075: use per-thread dict version pool (#118676)
Dino Viehland
2024-05-07
1
-0/+1
*
GH-115709: Invalidate executors when a local variable is changed via frame.f_...
Mark Shannon
2024-05-06
1
-3/+9
*
gh-118362: Fix thread safety around lookups from the type cache in the face o...
Dino Viehland
2024-05-06
5
-0/+29
*
gh-74929: Implement PEP 667 (GH-115153)
Tian Gao
2024-05-04
2
-0/+8
*
gh-111997: C-API for signalling monitoring events (#116413)
Irit Katriel
2024-05-04
1
-0/+250
*
gh-93502: Add new C-API functions to trace object creation and destruction (#...
Pablo Galindo Salgado
2024-05-02
1
-0/+10
*
GH-117442: Check eval-breaker at start (rather than end) of tier 2 loops (GH-...
Mark Shannon
2024-05-02
1
-1/+1
*
gh-110850: Add PyTime_TimeRaw() function (#118394)
Victor Stinner
2024-05-01
1
-0/+4
*
GH-115802: Use the GHC calling convention in JIT code (GH-118287)
Brandt Bucher
2024-05-01
1
-0/+1
*
gh-116767: fix crash on 'async with' with many context managers (GH-118348)
Irit Katriel
2024-05-01
1
-1/+1
[next]