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
*
bpo-40521: Make frame free list per-interpreter (GH-20638)
Victor Stinner
2020-06-04
3
-2/+9
*
bpo-40521: Make slice cache per-interpreter (GH-20637)
Victor Stinner
2020-06-04
2
-1/+5
*
bpo-40521: Make float free list per-interpreter (GH-20636)
Victor Stinner
2020-06-04
3
-2/+11
*
bpo-40521: Make tuple free list per-interpreter (GH-20247)
Victor Stinner
2020-06-04
3
-2/+23
*
bpo-40826: Add _PyOS_InterruptOccurred(tstate) function (GH-20599)
Victor Stinner
2020-06-03
1
-0/+3
*
PyOS_AfterFork_Child() pass tstate to _PyEval_ReInitThreads() (GH-20598)
Victor Stinner
2020-06-02
1
-1/+1
*
PyOS_AfterFork_Child() uses PyStatus (GH-20596)
Victor Stinner
2020-06-02
5
-7/+8
*
bpo-40244: Remove XLC's support from the noreturn flag (GH-20588)
Batuhan Taskaya
2020-06-02
1
-2/+2
*
bpo-39583: Remove superfluous "extern C" bits from Include/cpython/*.h (GH-18...
Skip Montanaro
2020-06-01
19
-151/+1
*
bpo-40826: Add _Py_EnsureTstateNotNULL() macro (GH-20571)
Victor Stinner
2020-06-01
1
-1/+18
*
bpo-40792: Make the result of PyNumber_Index() always having exact type int. ...
Serhiy Storchaka
2020-05-28
1
-0/+3
*
bpo-39573: Convert Py_REFCNT and Py_SIZE to functions (GH-20429)
Victor Stinner
2020-05-27
1
-2/+17
*
bpo-37999: No longer use __int__ in implicit integer conversions. (GH-15636)
Serhiy Storchaka
2020-05-26
1
-17/+0
*
bpo-39573: Convert Py_TYPE() to a static inline function (GH-20290)
Dong-hee Na
2020-05-25
1
-1/+5
*
bpo-40696: Fix a hang that can arise after gen.throw() (GH-20287)
Chris Jerdonek
2020-05-22
1
-1/+1
*
Python 3.10.0a0 (GH-20198)
Pablo Galindo
2020-05-19
1
-3/+3
*
bpo-31033: Improve the traceback for cancelled asyncio tasks (GH-19951)
Chris Jerdonek
2020-05-18
1
-0/+17
*
Update code comment re: location of struct _is. (GH-20067)
Chris Jerdonek
2020-05-15
1
-1/+1
*
bpo-40602: Write unit tests for _Py_hashtable_t (GH-20091)
Victor Stinner
2020-05-14
1
-11/+12
*
bpo-40521: Add PyInterpreterState.unicode (GH-20081)
Victor Stinner
2020-05-13
1
-8/+14
*
bpo-39465: Remove _PyUnicode_ClearStaticStrings() from C API (GH-20078)
Victor Stinner
2020-05-13
2
-3/+1
*
bpo-40609: _Py_hashtable_t values become void* (GH-20065)
Victor Stinner
2020-05-13
1
-67/+21
*
bpo-40609: _tracemalloc allocates traces (GH-20064)
Victor Stinner
2020-05-13
1
-10/+0
*
bpo-40609: Add destroy functions to _Py_hashtable (GH-20062)
Victor Stinner
2020-05-13
1
-3/+10
*
bpo-40609: Remove _Py_hashtable_t.key_size (GH-20060)
Victor Stinner
2020-05-13
1
-53/+21
*
bpo-40609: Rewrite how _tracemalloc handles domains (GH-20059)
Victor Stinner
2020-05-12
1
-6/+1
*
bpo-40602: Add _Py_HashPointerRaw() function (GH-20056)
Victor Stinner
2020-05-12
1
-0/+2
*
bpo-38787: Add PyCFunction_CheckExact() macro for exact type checks (GH-20024)
scoder
2020-05-12
2
-1/+5
*
bpo-40602: Optimize _Py_hashtable for pointer keys (GH-20051)
Victor Stinner
2020-05-12
1
-15/+25
*
bpo-40593: Improve syntax errors for invalid characters in source code. (GH-2...
Serhiy Storchaka
2020-05-12
2
-1/+2
*
bpo-40602: Rename hashtable.h to pycore_hashtable.h (GH-20044)
Victor Stinner
2020-05-12
1
-0/+218
*
bpo-40545: Export _PyErr_GetTopmostException() function (GH-19978)
Victor Stinner
2020-05-07
1
-1/+1
*
bpo-38787: C API for module state access from extension methods (PEP 573) (GH...
Petr Viktorin
2020-05-07
4
-20/+66
*
bpo-40528: Improve and clear several aspects of the ASDL definition code for ...
Batuhan Taskaya
2020-05-06
1
-2/+0
*
bpo-40513: Per-interpreter GIL (GH-19943)
Victor Stinner
2020-05-05
3
-0/+9
*
bpo-40522: _PyThreadState_Swap() sets autoTSSkey (GH-19939)
Victor Stinner
2020-05-05
1
-2/+18
*
Revert "bpo-40513: Per-interpreter signals pending (GH-19924)" (GH-19932)
Victor Stinner
2020-05-05
2
-2/+5
*
bpo-40520: Remove redundant comment in pydebug.h (GH-19931)
Hai Shi
2020-05-05
1
-2/+0
*
bpo-40513: Per-interpreter recursion_limit (GH-19929)
Victor Stinner
2020-05-05
3
-12/+14
*
bpo-40513: Per-interpreter gil_drop_request (GH-19927)
Victor Stinner
2020-05-05
2
-2/+2
*
bpo-40513: Per-interpreter signals pending (GH-19924)
Victor Stinner
2020-05-05
2
-2/+2
*
bpo-40246: Revert reporting of invalid string prefixes (GH-19888)
Lysandros Nikolaou
2020-05-04
1
-1/+0
*
bpo-40334: Make the PyPegen* and PyParser* APIs more consistent (GH-19839)
Lysandros Nikolaou
2020-05-01
1
-19/+28
*
bpo-40453: Add PyConfig._isolated_subinterpreter (GH-19820)
Victor Stinner
2020-05-01
2
-0/+6
*
bpo-40421: Add PyFrame_GetBack() function (GH-19765)
Victor Stinner
2020-04-29
1
-0/+2
*
bpo-40428: Remove PyTuple_ClearFreeList() function (GH-19769)
Victor Stinner
2020-04-29
9
-16/+10
*
bpo-40421: Add PyFrame_GetCode() function (GH-19757)
Victor Stinner
2020-04-28
1
-0/+2
*
bpo-40421: Add Include/cpython/code.h header file (GH-19756)
Victor Stinner
2020-04-28
4
-165/+170
*
bpo-40421: Add pyframe.h header file (GH-19755)
Victor Stinner
2020-04-28
13
-33/+41
*
Post 3.9.0a6
Ćukasz Langa
2020-04-28
1
-1/+1
[next]