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-29778: Fix incorrect NULL check in _PyPathConfig_InitDLLPath() (GH-17818)
Anthony Wee
2020-01-06
1
-1/+1
*
Fix constant folding optimization for positional only arguments (GH-17837)
Anthony Sottile
2020-01-05
1
-0/+1
*
Fix SystemError when nested function has annotation on positional-only argume...
Anthony Sottile
2020-01-05
1
-0/+2
*
Bring Python into the next decade. (GH-17801)
Benjamin Peterson
2020-01-03
1
-1/+1
*
bpo-39114: Fix tracing of except handlers with name binding (GH-17769)
Pablo Galindo
2020-01-02
1
-1/+3
*
bpo-13601: always use line-buffering for sys.stderr (GH-17646)
Jendrik Seipp
2020-01-01
1
-1/+1
*
bpo-39176: Improve error message for 'named assignment' (GH-17777)
Ned Batchelder
2020-01-01
1
-1/+1
*
closes bpo-37446: resolve undefined behavior in Python/hamt.c (GH-17727)
Batuhan Taşkaya
2019-12-31
1
-1/+1
*
Fix handling of line numbers around finally-blocks. (#17737)
Mark Shannon
2019-12-30
2
-1622/+1626
*
bpo-39028: Performance enhancement in keyword extraction (GH-17576)
Sebastian Berg
2019-12-18
1
-3/+7
*
bpo-39080: Starred Expression's column offset fix when inside a CALL (GH-17645)
Lysandros Nikolaou
2019-12-18
1
-1/+1
*
bpo-38858: Small integer per interpreter (GH-17315)
Victor Stinner
2019-12-17
1
-4/+9
*
bpo-39033: Fix NameError in zipimport during hash validation (GH-17588)
Xtreak
2019-12-15
1
-268/+267
*
The comment in ast_for_namedexpr shouldn't include if_stmt (GH-17586)
Guido van Rossum
2019-12-15
1
-3/+1
*
Fix elif start column offset when there is an else following (GH-17596)
Lysandros Nikolaou
2019-12-14
1
-2/+2
*
Add PYTHONUTF8 to commandline usage. (GH-17587)
Inada Naoki
2019-12-14
1
-0/+1
*
bpo-39031: Include elif keyword when producing lineno/col-offset info for if_...
Lysandros Nikolaou
2019-12-12
1
-2/+2
*
bpo-39008: Require Py_ssize_t for PySys_Audit formats rather than raise a dep...
Steve Dower
2019-12-09
1
-1/+1
*
bpo-20443: No longer make sys.argv[0] absolute for script (GH-17534)
Victor Stinner
2019-12-09
1
-4/+0
*
bpo-38858: Fix ref leak in pycore_interp_init() (GH-17512)
Victor Stinner
2019-12-08
1
-5/+10
*
bpo-38979: fix ContextVar "__class_getitem__" method (GH-17497)
AMIR
2019-12-08
1
-3/+4
*
bpo-38852: Set thread stack size to 8 Mb for debug builds on android platform...
xdegaye
2019-12-08
1
-0/+10
*
bpo-38858: Add pycore_interp_init() code to factorize code (GH-17483)
Victor Stinner
2019-12-06
1
-32/+24
*
bpo-38858: new_interpreter() reuses _PySys_Create() (GH-17481)
Victor Stinner
2019-12-06
2
-54/+46
*
Remove unused variable in Python/pylifecycle.c (GH-17475)
Pablo Galindo
2019-12-05
1
-2/+0
*
bpo-38962: Fix reference leak in the per-subinterpreter gc (GH-17457)
Pablo Galindo
2019-12-04
1
-6/+5
*
bpo-38962: Fix reference leak in new_interpreter() (GH-17453)
Pablo Galindo
2019-12-04
1
-0/+2
*
bpo-38920: Add audit hooks for when sys.excepthook and sys.unraisable hooks a...
Steve Dower
2019-11-28
3
-32/+50
*
bpo-38328: Speed up the creation time of constant list and set display. (GH-1...
Brandt Bucher
2019-11-26
1
-0/+22
*
bpo-38858: new_interpreter() uses pycore_init_import_warnings() (GH-17353)
Victor Stinner
2019-11-22
1
-14/+11
*
bpo-38858: new_interpreter() reuses pycore_init_builtins() (GH-17351)
Victor Stinner
2019-11-22
2
-40/+24
*
bpo-38858: _PyImport_FixupExtensionObject() handles subinterpreters (GH-17350)
Victor Stinner
2019-11-22
2
-45/+64
*
bpo-38858: Add init_interp_main() subfunction (GH-17347)
Victor Stinner
2019-11-22
1
-103/+109
*
bpo-38858: Add init_set_builtins_open() subfunction (GH-17346)
Victor Stinner
2019-11-22
1
-18/+50
*
bpo-38858: Call _PyUnicode_Fini() in Py_EndInterpreter() (GH-17330)
Victor Stinner
2019-11-22
1
-5/+5
*
bpo-36854: Fix refleak in subinterpreter (GH-17331)
Victor Stinner
2019-11-22
1
-0/+8
*
Produce cleaner bytecode for 'with' and 'async with' by generating separate c...
Mark Shannon
2019-11-21
7
-4449/+4322
*
bpo-38858: Fix Py_Finalize() when called from a subinterpreter (GH-17297)
Victor Stinner
2019-11-20
1
-11/+18
*
bpo-38858: Add _Py_IsMainInterpreter(tstate) (GH-17293)
Victor Stinner
2019-11-20
1
-0/+6
*
bpo-37340: Remove PyMethod_ClearFreeList() and PyCFunction_ClearFreeList() (G...
Victor Stinner
2019-11-20
1
-2/+0
*
bpo-36854: Move _PyRuntimeState.gc to PyInterpreterState (GH-17287)
Victor Stinner
2019-11-20
2
-2/+3
*
bpo-38858: Fix reference leak in pycore_init_types() (GH-17286)
Victor Stinner
2019-11-20
1
-20/+26
*
bpo-36854: gcmodule.c gets its state from tstate (GH-17285)
Victor Stinner
2019-11-20
1
-1/+1
*
bpo-36854: Clear the current thread later (GH-17279)
Victor Stinner
2019-11-20
2
-27/+35
*
bpo-38858: Factorize Py_EndInterpreter() code (GH-17273)
Victor Stinner
2019-11-20
2
-54/+78
*
bpo-38835: Don't use PyFPE_START_PROTECT and PyFPE_END_PROTECT (GH-17231)
Victor Stinner
2019-11-20
2
-6/+0
*
bpo-36710: Add PyInterpreterState.runtime field (GH-17270)
Victor Stinner
2019-11-20
4
-82/+70
*
bpo-38823: Fix refleak in marshal init error path (GH-17260)
Brandt Bucher
2019-11-20
1
-1/+4
*
bpo-38631: Avoid Py_FatalError() in handle_legacy_finalizers() (GH-17266)
Victor Stinner
2019-11-20
2
-5/+12
*
bpo-38858: Reorganize pycore_init_types() (GH-17265)
Victor Stinner
2019-11-19
1
-20/+11
[next]