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-135379: Specialize int operations for compact ints only (GH-135668)
Mark Shannon
2025-06-19
1
-0/+6
*
gh-127545: Add _Py_ALIGNED_DEF(N, T) and use it for PyObject (GH-135209)
Petr Viktorin
2025-06-11
1
-61/+59
*
gh-134891: Add PyUnstable_Unicode_GET_CACHED_HASH (GH-134892)
Petr Viktorin
2025-06-06
1
-0/+11
*
gh-133968: Add PyUnicodeWriter_WriteASCII() function (#133973)
Victor Stinner
2025-05-29
1
-0/+4
*
gh-91048: Refactor and optimize remote debugging module (#134652)
Pablo Galindo Salgado
2025-05-25
1
-0/+2
*
Revert "gh-133395: add option for extension modules to specialize BINARY_OP/S...
Irit Katriel
2025-05-06
1
-12/+0
*
gh-132775: Unrevert "Add _PyCode_GetVarCounts()" (gh-133265)
Eric Snow
2025-05-05
1
-0/+5
*
gh-133140: Add `PyUnstable_Object_IsUniquelyReferenced` for free-threading (#...
Peter Bierma
2025-05-05
1
-0/+2
*
gh-133395: add option for extension modules to specialize BINARY_OP/SUBSCR, a...
Irit Katriel
2025-05-05
1
-0/+12
*
GH-133231: Changes to executor management to support proposed `sys._jit` modu...
Mark Shannon
2025-05-04
1
-1/+1
*
gh-128972: Add `_Py_ALIGN_AS` and revert `PyASCIIObject` memory layout. (GH-1...
Petr Viktorin
2025-05-02
1
-10/+20
*
gh-133164: Add `PyUnstable_Object_IsUniqueReferencedTemporary` C API (gh-133170)
Sam Gross
2025-05-02
1
-0/+5
*
gh-100239: specialize BINARY_OP/SUBSCR for list-slice (#132626)
Irit Katriel
2025-05-01
1
-1/+1
*
PyStats: Make sure that the `failure_kinds` array is big enough. (#133245)
Mark Shannon
2025-05-01
1
-1/+1
*
Revert "gh-132775: Add _PyCode_GetVarCounts() (gh-133128)" (gh-133232)
Eric Snow
2025-05-01
1
-5/+0
*
gh-132775: Add _PyCode_GetVarCounts() (gh-133128)
Eric Snow
2025-04-30
1
-0/+5
*
GH-124715: Move trashcan mechanism into `Py_Dealloc` (GH-132280)
Mark Shannon
2025-04-30
1
-70/+3
*
gh-133079: Remove Py_C_RECURSION_LIMIT & PyThreadState.c_recursion_remaining ...
Petr Viktorin
2025-04-29
1
-4/+0
*
gh-132775: Drop PyUnstable_InterpreterState_GetMainModule() (gh-132978)
Eric Snow
2025-04-28
1
-2/+0
*
gh-128813: hide mixed-mode functions for complex arithmetic from C-API (#131703)
Sergey B Kirpichev
2025-04-22
1
-6/+0
*
gh-132449: Improve syntax error messages for keywords with typos (#132450)
Pablo Galindo Salgado
2025-04-22
1
-0/+1
*
gh-132639: Adds PyLong_AsNativeBytes, PyLong_FromNativeBytes and PyLong_FromU...
Steve Dower
2025-04-21
1
-51/+0
*
gh-131927: Prevent emitting optimizer warnings twice in the REPL (#131993)
Tomas R.
2025-04-12
1
-0/+6
*
gh-128384: Use a context variable for warnings.catch_warnings (gh-130010)
Neil Schemenauer
2025-04-09
1
-0/+2
*
gh-100239: more stats for BINARY_OP/SUBSCR specialization (#132230)
Irit Katriel
2025-04-08
1
-1/+1
*
gh-100239: more refined specialisation stats for BINARY_OP/SUBSCR (#132068)
Irit Katriel
2025-04-04
1
-1/+1
*
gh-131591: Implement PEP 768 (#131937)
Pablo Galindo Salgado
2025-04-03
2
-0/+9
*
gh-131525: Cache the result of tuple_hash (#131529)
Michael Droettboom
2025-03-27
1
-0/+2
*
GH-131238: Core header refactor (GH-131250)
Mark Shannon
2025-03-17
2
-53/+1
*
gh-131306: Remove unused code related to `BINARY_SUBSCR` (#131307)
Tomas R.
2025-03-16
1
-1/+1
*
gh-130947: Add again PySequence_Fast() to the limited C API (#130948)
Victor Stinner
2025-03-13
1
-9/+0
*
gh-131121: Fix `_Py_atomic_store_char_relaxed` memory order (gh-131122)
Sam Gross
2025-03-12
1
-1/+1
*
gh-124878: Fix race conditions during interpreter finalization (#130649)
Sam Gross
2025-03-06
1
-3/+5
*
gh-130790: Remove references about unicode's readiness from comments (#130801)
Sergey Miryanov
2025-03-03
1
-5/+4
*
gh-46236: PyUnicode docs improvements (GH-129966)
Petr Viktorin
2025-02-28
1
-2/+2
*
GH-130396: Increase trashcan overhead (GH-130552)
Mark Shannon
2025-02-26
1
-2/+2
*
gh-130202: Fix bug in `_PyObject_ResurrectEnd` in free threaded build (gh-130...
Sam Gross
2025-02-25
1
-0/+1
*
GH-130396: Use computed stack limits on linux (GH-130398)
Mark Shannon
2025-02-25
2
-37/+8
*
GH-91079: Revert "GH-91079: Implement C stack limits using addresses, not cou...
Petr Viktorin
2025-02-24
2
-8/+37
*
gh-128863: Deprecate the private _PyUnicodeWriter API (#129245)
Victor Stinner
2025-02-20
1
-32/+28
*
GH-91079: Implement C stack limits using addresses, not counters. (GH-130007)
Mark Shannon
2025-02-19
2
-37/+8
*
gh-129107: make `bytearray` thread safe (#129108)
Tomasz Pytel
2025-02-15
1
-0/+4
*
GH-129715: Remove _DYNAMIC_EXIT (GH-129716)
Brandt Bucher
2025-02-07
1
-0/+1
*
GH-128842: Collect JIT memory stats (GH-128941)
Diego Russo
2025-02-02
1
-0/+8
*
gh-91417: Remove PySequence_Fast() from the limited C API (#129398)
Victor Stinner
2025-02-02
1
-0/+26
*
gh-89188: Implement PyUnicode_KIND() as a function (#129412)
Victor Stinner
2025-01-30
1
-2/+6
*
gh-128911: Add PyImport_ImportModuleAttr() function (#128912)
Victor Stinner
2025-01-30
1
-0/+7
*
gh-127119: Faster check for small ints in long_dealloc (GH-127620)
Pieter Eendebak
2025-01-29
1
-2/+2
*
gh-129296: Fix `pyatomic.h` include paths (#129320)
Zanie Blue
2025-01-29
2
-4/+4
*
gh-128844: Make `_Py_TryIncref` public as an unstable API. (#128926)
Sam Gross
2025-01-28
1
-0/+6
[prev]
[next]