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
*
Typo fix - implemention should be implementation (GH-16806)
Miss Islington (bot)
2019-10-15
1
-1/+1
*
bpo-38469: Handle named expression scope with global/nonlocal keywords (GH-16...
Miss Islington (bot)
2019-10-14
1
-3/+9
*
Correct signature of __build_class__ (GH-16735)
Miss Islington (bot)
2019-10-13
1
-1/+1
*
[3.8] Typo fix: "throuhgh" should be "through". (GH-16713)
Benjamin Peterson
2019-10-11
1
-1/+1
*
bpo-38425: Fix ‘res’ may be used uninitialized warning (GH-16688)
Miss Islington (bot)
2019-10-10
1
-1/+2
*
Typo fix: "empy" should be "empty". (GH-16666)
Miss Islington (bot)
2019-10-09
1
-1/+1
*
Fix typo in _warnings.warn_explicit() docstring (GH-16625)
Miss Islington (bot)
2019-10-08
1
-1/+1
*
bpo-38304: PyConfig_InitPythonConfig() cannot fail anymore (GH-16509)
Miss Islington (bot)
2019-10-01
5
-54/+13
*
bpo-38304: Remove PyConfig.struct_size (GH-16500)
Victor Stinner
2019-09-30
6
-114/+12
*
bpo-38317: Fix PyConfig.warnoptions priority (GH-16478)
Miss Islington (bot)
2019-09-29
3
-45/+85
*
bpo-38304: Add PyConfig.struct_size (GH-16451) (GH-16453)
Victor Stinner
2019-09-28
6
-28/+175
*
[3.8] bpo-38234: Backport init path config changes from master (GH-16423)
Victor Stinner
2019-09-26
2
-18/+59
*
bpo-38234: Fix _PyConfig_InitPathConfig() (GH-16335) (GH-16336)
Victor Stinner
2019-09-23
1
-149/+166
*
bpo-38236: Dump path config at first import error (GH-16300) (GH-16332)
Victor Stinner
2019-09-23
2
-4/+101
*
bpo-38237: Shorter docstring (GH-16322) (GH-16323)
Miss Islington (bot)
2019-09-21
2
-4/+4
*
bpo-38237: Let pow() support keyword arguments (GH-16302) (GH-16320)
Miss Islington (bot)
2019-09-21
2
-26/+32
*
[3.8] bpo-38234: Fix PyConfig_Read() when Py_SetPath() was called (GH-16298) ...
Victor Stinner
2019-09-21
2
-66/+56
*
[3.8] bpo-38070: Py_FatalError() logs runtime state (GH-16258)
Victor Stinner
2019-09-18
2
-34/+75
*
[3.8] bpo-37206: Unrepresentable default values no longer represented as None...
Serhiy Storchaka
2019-09-14
6
-13/+13
*
[3.8] bpo-38121: Sync importlib.metadata with 0.22 backport (GH-15993) (GH-16...
Jason R. Coombs
2019-09-12
1
-1019/+900
*
bpo-38096: Clean up the "struct sequence" / "named tuple" docs (GH-15895) (GH...
Paul Ganssle
2019-09-12
2
-7/+7
*
closes bpo-38124: Fix bounds check in PyState_AddModule. (GH-16007)
Miss Islington (bot)
2019-09-12
1
-8/+6
*
[3.8] bpo-37409: fix relative import with no parent (GH-14956) (GH-15913)
Brett Cannon
2019-09-11
1
-10/+13
*
[3.8] bpo-38086: Sync importlib.metadata with importlib_metadata 0.21. (GH-15...
Jason R. Coombs
2019-09-10
1
-610/+609
*
bpo-38090: Fix reference leak in ceval.c (GH-15848)
Miss Islington (bot)
2019-09-10
1
-1/+0
*
bpo-20490: Improve circular import error message (GH-15308)
Steve Dower
2019-09-09
1
-4/+11
*
[3.8] bpo-37994: Fix silencing all errors if an attribute lookup fails. (GH-1...
Serhiy Storchaka
2019-09-01
2
-14/+8
*
Fix typos mostly in comments, docs and test names (GH-15209)
Miss Islington (bot)
2019-08-30
2
-3/+3
*
bpo-37976: Prevent shadowing of TypeError in zip() (GH-15592) (GH-15608)
Miss Islington (bot)
2019-08-30
1
-4/+0
*
[3.8] bpo-37034: Display argument name on errors with keyword arguments with ...
Serhiy Storchaka
2019-08-29
6
-33/+27
*
bpo-37947: Avoid double-decrement in symtable recursion counting (GH-15593)
Miss Islington (bot)
2019-08-29
1
-4/+14
*
bpo-18049: Define THREAD_STACK_SIZE for AIX to pass default recursion limit t...
Miss Islington (bot)
2019-08-29
1
-0/+4
*
Fix unused variable and signed/unsigned warnings (GH-15537) (GH-15551)
Miss Islington (bot)
2019-08-27
2
-3/+3
*
bpo-37954: Fix reference leak in the symtable (GH-15514)
Miss Islington (bot)
2019-08-26
1
-1/+3
*
[3.8] bpo-37947: Adjust correctly the recursion level in symtable for named e...
Pablo Galindo
2019-08-26
1
-1/+3
*
[3.8] bpo-37757: Disallow PEP 572 cases that expose implementation details (G...
Nick Coghlan
2019-08-25
1
-24/+97
*
[3.8] bpo-37942: Improve argument clinic float converter (GH-15470) (GH-15480)
Raymond Hettinger
2019-08-25
2
-6/+12
*
[3.8] bpo-37830: Fix compilation of break and continue in finally. (GH-15320)...
Serhiy Storchaka
2019-08-24
4
-180/+224
*
bpo-28269: Replace strcasecmp with system function _stricmp. (GH-13095)
Miss Islington (bot)
2019-08-24
1
-19/+1
*
bpo-29535: Remove promize about hash randomization of datetime objects. (GH-1...
Miss Islington (bot)
2019-08-24
1
-2/+2
*
bpo-36763: PyConfig_Read() handles PySys_AddXOption() (GH-15431) (GH-15435)
Victor Stinner
2019-08-23
2
-31/+46
*
bpo-37549: os.dup() fails for standard streams on Windows 7 (GH-15389)
Miss Islington (bot)
2019-08-23
1
-1/+8
*
bpo-36763: Implement PyWideStringList_Insert() of PEP 587 (GH-15423)
Miss Islington (bot)
2019-08-23
1
-4/+25
*
bpo-37926: Fix PySys_SetArgvEx(0, NULL, 0) crash (GH-15415) (GH-15420)
Victor Stinner
2019-08-23
1
-1/+2
*
bpo-37834: Normalise handling of reparse points on Windows (GH-15370)
Steve Dower
2019-08-21
1
-1/+6
*
bpo-36266: Add module name in ImportError when DLL not found on Windows (GH-1...
Miss Islington (bot)
2019-08-17
1
-4/+4
*
[3.8] bpo-32912: Revert SyntaxWarning on invalid escape sequences (GH-15142)
Serhiy Storchaka
2019-08-09
1
-3/+3
*
bpo-18049: Sync thread stack size to main thread size on macOS (GH-14748)
Miss Islington (bot)
2019-08-01
1
-1/+2
*
bpo-37500: Make sure dead code does not generate bytecode but also detect syn...
Miss Islington (bot)
2019-07-29
1
-5/+64
*
bpo-37697: Sync with importlib_metadata 0.19 (GH-14993) (GH-14995)
Miss Islington (bot)
2019-07-28
1
-779/+796
[next]