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-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
*
bpo-1294959: Add sys.platlibdir attribute (GH-18381)
Victor Stinner
2020-03-10
1
-2/+9
*
bpo-39877: Deprecate PyEval_InitThreads() (GH-18892)
Victor Stinner
2020-03-10
1
-6/+1
*
bpo-39877: PyGILState_Ensure() don't call PyEval_InitThreads() (GH-18891)
Victor Stinner
2020-03-09
2
-20/+20
*
bpo-19466: Py_Finalize() clears daemon threads earlier (GH-18848)
Victor Stinner
2020-03-09
2
-7/+22
*
bpo-39877: take_gil() checks tstate_must_exit() twice (GH-18890)
Victor Stinner
2020-03-09
1
-1/+18
*
bpo-36287: Make ast.dump() not output optional fields and attributes with def...
Serhiy Storchaka
2020-03-09
1
-0/+94
*
bpo-39877: Refactor take_gil() function (GH-18885)
Victor Stinner
2020-03-09
2
-66/+53
*
bpo-39877: Py_Initialize() pass tstate to PyEval_InitThreads() (GH-18884)
Victor Stinner
2020-03-09
2
-9/+26
*
bpo-39877: Remove useless PyEval_InitThreads() calls (GH-18883)
Victor Stinner
2020-03-09
1
-4/+2
*
bpo-38249: Expand Py_UNREACHABLE() to __builtin_unreachable() in the release ...
Serhiy Storchaka
2020-03-09
3
-6/+10
*
bpo-38691: importlib ignores PYTHONCASEOK if -E is used (GH-18627)
idomic
2020-03-09
1
-2626/+2634
*
closes bpo-39898: Remove unused arg from append_formattedvalue. (GH-18840)
Andy Lester
2020-03-08
1
-4/+4
*
bpo-39877: Fix PyEval_RestoreThread() for daemon threads (GH-18811)
Victor Stinner
2020-03-08
3
-26/+69
*
bpo-39890: Don't mutate the AST when compiling starred assignments (GH-18833)
Brandt Bucher
2020-03-08
1
-2/+4
*
closes bpo-39886: Remove unused arg from config_get_stdio_errors. (GH-18823)
Andy Lester
2020-03-07
1
-2/+2
*
closes bpo-39878: Remove unused arguments from static functions. (GH-18822)
Andy Lester
2020-03-07
1
-10/+10
*
bpo-39882: Py_FatalError() logs the function name (GH-18819)
Victor Stinner
2020-03-06
5
-37/+44
*
bpo-39877: _PyRuntimeState.finalizing becomes atomic (GH-18816)
Victor Stinner
2020-03-06
4
-9/+12
*
bpo-39573: Use Py_IS_TYPE() macro to check for types (GH-18809)
Andy Lester
2020-03-06
1
-1/+1
*
closes bpo-39872: Remove unused args from symtable_exit_block and symtable_vi...
Andy Lester
2020-03-06
1
-16/+15
*
closes bpo-39870: Remove unused arg from sys_displayhook_unencodable. (GH-18796)
Andy Lester
2020-03-06
1
-3/+3
*
Add a comment to _Py_RestoreSignals() (GH-18792)
Victor Stinner
2020-03-05
1
-0/+2
*
bpo-39639: Remove the AST "Suite" node and associated code (GH-18513)
Batuhan Taşkaya
2020-03-04
5
-93/+0
*
bpo-39573: Finish converting to new Py_IS_TYPE() macro (GH-18601)
Andy Lester
2020-03-04
3
-4/+4
*
bpo-39702: Relax grammar restrictions on decorators (PEP 614) (GH-18570)
Brandt Bucher
2020-03-03
2
-520/+442
[next]