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
/
Python
Commit message (
Expand
)
Author
Age
Files
Lines
*
bpo-38644: Use _PySys_Audit(): pass tstate explicitly (GH-19183)
Victor Stinner
2020-03-27
4
-25/+31
*
bpo-38644: Make tstate more explicit inside pystate.c (GH-19182)
Victor Stinner
2020-03-26
1
-47/+61
*
bpo-38644: Pass tstate explicitly in signalmodule.c (GH-19184)
Victor Stinner
2020-03-26
1
-2/+2
*
bpo-38644: Add _PySys_Audit() which takes tstate (GH-19180)
Victor Stinner
2020-03-26
2
-65/+112
*
bpo-38410: Properly handle PySys_Audit() failures (GH-16657)
Zackery Spytz
2020-03-26
2
-10/+16
*
bpo-40067: Improve error messages for multiple star expressions in assignment...
Furkan Önder
2020-03-26
1
-1/+1
*
bpo-39947: Add PyThreadState_GetID() function (GH-19163)
Victor Stinner
2020-03-25
1
-0/+8
*
bpo-39947: Add _PyThreadState_GetDict() function (GH-19160)
Victor Stinner
2020-03-25
1
-9/+18
*
bpo-39882: Add _Py_FatalErrorFormat() function (GH-19157)
Victor Stinner
2020-03-25
8
-75/+125
*
Use calloc-based functions, not malloc. (GH-19152)
Andy Lester
2020-03-25
3
-12/+6
*
bpo-40050: Fix importlib._bootstrap_external (GH-19135)
Victor Stinner
2020-03-24
1
-1736/+1729
*
bpo-20526: Fix PyThreadState_Clear(): don't decref frame (GH-19120)
Victor Stinner
2020-03-24
1
-2/+10
*
bpo-39999: Improve compatibility of the ast module. (GH-19056)
Serhiy Storchaka
2020-03-22
1
-6/+6
*
bpo-22490: Remove __PYVENV_LAUNCHER__ from environment during launch (GH-9516)
Ronald Oussoren
2020-03-22
1
-0/+11
*
bpo-40024: Add PyModule_AddType() helper function (GH-19088)
Dong-hee Na
2020-03-22
1
-0/+19
*
bpo-39946: Remove _PyThreadState_GetFrame (GH-19094)
Victor Stinner
2020-03-20
3
-28/+7
*
bpo-39947: Add PyThreadState_GetFrame() function (GH-19092)
Victor Stinner
2020-03-20
1
-0/+8
*
bpo-40010: Optimize pending calls in multithreaded applications (GH-19091)
Victor Stinner
2020-03-20
1
-4/+6
*
bpo-40010: COMPUTE_EVAL_BREAKER() checks for subinterpreter (GH-19087)
Victor Stinner
2020-03-20
2
-30/+3
*
bpo-40010: Pass tstate to ceval GIL functions (GH-19077)
Victor Stinner
2020-03-20
2
-138/+199
*
bpo-39877: 4th take_gil() fix for daemon threads (GH-19080)
Victor Stinner
2020-03-19
1
-22/+23
*
bpo-40010: Optimize signal handling in multithreaded applications (GH-19067)
Victor Stinner
2020-03-19
2
-4/+23
*
bpo-39562: Allow executing asynchronous comprehensions in the asyncio REPL (G...
Batuhan Taşkaya
2020-03-19
1
-2/+5
*
bpo-40000: Improve error messages when validating invalid ast.Constant nodes ...
Batuhan Taşkaya
2020-03-19
1
-3/+5
*
bpo-39984: Move pending calls to PyInterpreterState (GH-19066)
Victor Stinner
2020-03-19
3
-76/+101
*
bpo-39220: Do not optimise annotation if 'from __future__ import annotations'...
Pablo Galindo
2020-03-18
2
-38/+50
*
bpo-39984: trip_signal() uses PyGILState_GetThisThreadState() (GH-19061)
Victor Stinner
2020-03-18
1
-5/+9
*
bpo-39984: Pass tstate to _PyEval_SignalAsyncExc() (GH-19049)
Victor Stinner
2020-03-18
4
-22/+28
*
bpo-39877: Fix take_gil() for daemon threads (GH-19054)
Victor Stinner
2020-03-18
1
-2/+6
*
bpo-39984: _PyThreadState_DeleteCurrent() takes tstate (GH-19051)
Victor Stinner
2020-03-18
2
-29/+41
*
bpo-39984: Pass tstate to handle_signals() (GH-19050)
Victor Stinner
2020-03-18
1
-11/+15
*
bpo-39988: Remove ast.AugLoad and ast.AugStore node classes. (GH-19038)
Serhiy Storchaka
2020-03-17
3
-173/+45
*
bpo-39984: Add PyInterpreterState.ceval (GH-19047)
Victor Stinner
2020-03-17
2
-10/+18
*
bpo-39987: Simplify setting lineno in the compiler. (GH-19037)
Serhiy Storchaka
2020-03-17
4
-4006/+3970
*
bpo-35370: PyEval_SetTrace() logs unraisable error (GH-18977)
Victor Stinner
2020-03-16
1
-2/+8
*
bpo-37207: Add _PyArg_NoKwnames() helper function (GH-18980)
Dong-hee Na
2020-03-16
1
-1/+18
*
bpo-39638: Keep ASDL signatures in the AST nodes (GH-18515)
Batuhan Taşkaya
2020-03-16
1
-120/+277
*
bpo-39969: Remove ast.Param node class as is no longer used (GH-19020)
Batuhan Taşkaya
2020-03-15
3
-46/+19
*
bpo-39965: Correctly raise SyntaxError if await is used outside async functio...
Pablo Galindo
2020-03-15
1
-4/+8
*
bpo-39585: Delete a pending comment in _warning.c (GH-18414)
Hai Shi
2020-03-14
1
-1/+2
*
bpo-39947: Add PyThreadState_GetInterpreter() (GH-18981)
Victor Stinner
2020-03-13
1
-0/+11
*
bpo-39947: Add PyInterpreterState_Get() function (GH-18979)
Victor Stinner
2020-03-13
1
-3/+3
*
bpo-39947: Use _PyInterpreterState_GET_UNSAFE() (GH-18978)
Victor Stinner
2020-03-13
6
-15/+15
*
bpo-35370: Add _PyEval_SetTrace() function (GH-18975)
Victor Stinner
2020-03-13
2
-44/+102
*
bpo-38500: Add _PyInterpreterState_SetEvalFrameFunc() (GH-17340)
Victor Stinner
2020-03-12
2
-9/+20
*
Remove unused args from two pylifecycle.c functions (GH-18867)
Andy Lester
2020-03-12
1
-6/+5
*
bpo-39847: EnterNonRecursiveMutex() uses GetTickCount64() (GH-18780)
bobince
2020-03-11
1
-3/+3
*
closes bpo-39922: Remove unused args from four functions. (GH-18893)
Andy Lester
2020-03-11
1
-17/+17
*
bpo-38631: _PyGILState_Init() returns PyStatus (GH-18908)
Victor Stinner
2020-03-10
2
-3/+7
*
bpo-34822: Simplify AST for subscription. (GH-9605)
Serhiy Storchaka
2020-03-10
6
-607/+191
[next]