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-39489: Remove COUNT_ALLOCS special build (GH-18259)
Victor Stinner
2020-02-03
4
-64/+1
*
Update sum comment. (#18240)
Brandt Bucher
2020-02-01
1
-1/+5
*
bpo-39511: PyThreadState_Clear() calls on_delete (GH-18296)
Victor Stinner
2020-02-01
1
-3/+5
*
bpo-39487: Merge duplicated _Py_IDENTIFIER identifiers in C code (GH-18254)
Hai Shi
2020-01-30
4
-12/+7
*
bpo-38631: Replace Py_FatalError() with assert() in ceval.c (GH-18279)
Victor Stinner
2020-01-30
1
-10/+4
*
bpo-38960: DTrace build fix for FreeBSD. (GH-17451)
David Carlier
2020-01-28
3
-6/+6
*
bpo-38644: Pass tstate in ceval.c (GH-18222)
Victor Stinner
2020-01-28
1
-6/+6
*
bpo-38631: Avoid Py_FatalError() in _PyCodecRegistry_Init() (GH-18217)
Victor Stinner
2020-01-27
1
-16/+21
*
bpo-39320: Handle unpacking of **values in compiler (GH-18141)
Mark Shannon
2020-01-27
5
-3642/+3653
*
bpo-39320: Handle unpacking of *values in compiler (GH-17984)
Mark Shannon
2020-01-23
4
-2308/+2300
*
bpo-39427: Document -X opt options in the CLI --help and the man page (GH-18131)
Pablo Galindo
2020-01-23
1
-1/+32
*
bpo-39336: Allow packages to not let their child modules be set on them (#18006)
Dino Viehland
2020-01-23
1
-337/+346
*
bpo-31031: Unify duplicate bits_in_digit and bit_length (GH-2866)
Niklas Fiekas
2020-01-16
1
-0/+15
*
Fix compiler warning on Windows (GH-18012)
Ammar Askar
2020-01-15
1
-1/+1
*
bpo-39164: Fix compiler warning in PyErr_GetExcInfo() (GH-18010)
Victor Stinner
2020-01-15
1
-1/+1
*
bpo-39048: Look up __aenter__ before __aexit__ in async with (GH-17609)
Géry Ogam
2020-01-14
1
-9/+10
*
bpo-39156: Break up COMPARE_OP into four logically distinct opcodes. (GH-17754)
Mark Shannon
2020-01-14
7
-4753/+4780
*
bpo-38644: Pass tstate to _Py_FinishPendingCalls() (GH-17990)
Victor Stinner
2020-01-13
2
-3/+3
*
bpo-39164: Add private _PyErr_GetExcInfo() function (GH-17752)
Julien Danjou
2020-01-13
1
-4/+10
*
Cleanup exit code for interpreter. (GH-17756)
Mark Shannon
2020-01-13
1
-6/+5
*
bpo-39200: Correct the error message for min/max builtin function (GH-17814)
Dong-hee Na
2020-01-10
1
-2/+7
*
bpo-39166: Fix trace of last iteration of async for loops (#17800)
Pablo Galindo
2020-01-10
1
-5/+9
*
bpo-39235: Fix end location for genexp in call args (GH-17925)
Guido van Rossum
2020-01-09
1
-8/+8
*
bpo-39270: Remove dead assignment from config_init_module_search_paths (GH-17...
Alex Henrie
2020-01-09
1
-2/+1
*
closes bpo-39261: Remove dead assignment from pyinit_config. (GH-17907)
Alex Henrie
2020-01-09
1
-1/+0
*
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
[next]