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
/
internal
Commit message (
Expand
)
Author
Age
Files
Lines
*
[3.9] gh-95778: CVE-2020-10735: Prevent DoS by very large int() (#96502)
Gregory P. Smith
2022-09-05
3
-0/+53
*
gh-93065: Fix HAMT to iterate correctly over 7-level deep trees (GH-93066) (#...
Miss Islington (bot)
2022-05-24
1
-1/+13
*
[3.9] bpo-45806: Fix recovery from stack overflow for 3.9. Again. (GH-29640)
Mark Shannon
2021-11-19
1
-16/+0
*
[3.9] Fix typos in the Include directory (GH-28745) (GH-28788)
Christian Clauss
2021-10-07
1
-1/+1
*
[3.9] Remove trailing spaces (GH-28710)
Serhiy Storchaka
2021-10-03
1
-1/+1
*
[3.9] bpo-45083: Include the exception class qualname when formatting an exce...
Miss Islington (bot)
2021-09-03
1
-0/+3
*
bpo-44184: Fix subtype_dealloc() for freed type (GH-26274)
Miss Islington (bot)
2021-07-15
1
-1/+1
*
[3.9] bpo-43667: Fix broken Unicode encoding in non-UTF locales on Solaris (G...
Jakub KulĂk
2021-05-21
1
-0/+12
*
[3.9] bpo-43710: Rollback the 3.9 bpo-42500 fix, it broke the ABI in 3.9.3 (#...
Gregory P. Smith
2021-04-04
1
-0/+16
*
bpo-42500: Fix recursion in or after except (GH-23568) (#24501)
Mark Shannon
2021-03-02
1
-16/+0
*
bpo-41686: Always create the SIGINT event on Windows (GH-23344) (GH-23347)
Victor Stinner
2020-11-17
1
-0/+1
*
bpo-41617: Add _Py__has_builtin() macro (GH-23260) (GH-23262)
Victor Stinner
2020-11-13
1
-9/+6
*
Fix a compiler warning in pycore_pylifecycle.h (GH-22331)
Pablo Galindo
2020-09-21
1
-1/+1
*
[3.9] bpo-41631: _ast module uses again a global state (GH-21961) (GH-22258)
Pablo Galindo
2020-09-15
1
-0/+1
*
bpo-41617: Fix pycore_byteswap.h to support clang 3.0 (GH-22042) (GH-22044)
Victor Stinner
2020-09-01
1
-4/+6
*
bpo-40910: Export Py_GetArgcArgv() function (GH-20721) (GH-20723)
Victor Stinner
2020-06-08
1
-1/+1
*
[3.9] bpo-40826: PyOS_InterruptOccurred() requires GIL (GH-20578) (GH-20618)
Victor Stinner
2020-06-03
1
-1/+18
*
[3.9] bpo-40826: Fix GIL usage in PyOS_Readline() (GH-20613)
Victor Stinner
2020-06-03
1
-0/+3
*
bpo-40696: Fix a hang that can arise after gen.throw() (GH-20287)
Miss Islington (bot)
2020-05-22
1
-1/+1
*
[3.9] bpo-40514: Remove --with-experimental-isolated-subinterpreters in 3.9 (...
Victor Stinner
2020-05-19
4
-21/+0
*
bpo-31033: Improve the traceback for cancelled asyncio tasks (GH-19951)
Chris Jerdonek
2020-05-18
1
-0/+17
*
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-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: Optimize _Py_hashtable for pointer keys (GH-20051)
Victor Stinner
2020-05-12
1
-15/+25
*
bpo-40602: Rename hashtable.h to pycore_hashtable.h (GH-20044)
Victor Stinner
2020-05-12
1
-0/+218
*
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-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-40334: Make the PyPegen* and PyParser* APIs more consistent (GH-19839)
Lysandros Nikolaou
2020-05-01
1
-19/+28
*
bpo-40428: Remove PyTuple_ClearFreeList() function (GH-19769)
Victor Stinner
2020-04-29
1
-0/+10
*
bpo-40421: Add pyframe.h header file (GH-19755)
Victor Stinner
2020-04-28
2
-3/+2
*
bpo-40334: Support CO_FUTURE_BARRY_AS_BDFL in the new parser (GH-19721)
Pablo Galindo
2020-04-27
1
-4/+7
*
bpo-40334: Improve various PEG-Parser related stuff (GH-19669)
Lysandros Nikolaou
2020-04-23
1
-0/+34
*
bpo-40302: Replace PY_INT64_T with int64_t (GH-19573)
Victor Stinner
2020-04-17
1
-1/+1
*
bpo-40302: Add pycore_byteswap.h header file (GH-19552)
Victor Stinner
2020-04-17
1
-0/+89
*
bpo-40170: Convert PyObject_IS_GC() macro to a function (GH-19464)
Hai Shi
2020-04-14
1
-0/+9
*
bpo-40268: Move struct _gc_runtime_state to pycore_gc.h (GH-19515)
Victor Stinner
2020-04-14
3
-102/+101
*
bpo-40232: Update PyOS_AfterFork_Child() to use _PyThread_at_fork_reinit() (G...
Dong-hee Na
2020-04-14
3
-3/+7
*
bpo-40268: Rename _PyInterpreterState_GET_UNSAFE() (GH-19509)
Victor Stinner
2020-04-14
1
-1/+2
*
bpo-40268: Include explicitly pycore_interp.h (GH-19505)
Victor Stinner
2020-04-14
3
-5/+6
*
bpo-40241: Add pycore_interp.h header (GH-19499)
Victor Stinner
2020-04-13
2
-165/+184
*
bpo-40268: Add pycore_runtime.h header file (GH-19493)
Victor Stinner
2020-04-13
2
-121/+144
[next]