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-40679: Fix _PyEval_EvalCode() crash if qualname is NULL (GH-20615)
Victor Stinner
2020-06-04
1
-22/+36
*
bpo-40471: Fix grammar typo in 'issubclass' docstring (GH-19847)
Alex Povel
2020-06-03
2
-6/+6
*
PyOS_AfterFork_Child() pass tstate to _PyEval_ReInitThreads() (GH-20598)
Victor Stinner
2020-06-02
1
-3/+2
*
bpo-40232: _PyImport_ReInitLock() can now safely use its lock (GH-20597)
Victor Stinner
2020-06-02
1
-5/+1
*
PyOS_AfterFork_Child() uses PyStatus (GH-20596)
Victor Stinner
2020-06-02
3
-35/+36
*
Fix MSVC warnings in pythonrun.c (#GH-0587)
Ammar Askar
2020-06-02
1
-8/+8
*
bpo-40826: Add _Py_EnsureTstateNotNULL() macro (GH-20571)
Victor Stinner
2020-06-01
4
-29/+18
*
Make sure that keyword arguments are merged into the arguments dictionary whe...
Mark Shannon
2020-06-01
1
-0/+3
*
bpo-40780: Fix failure of _Py_dg_dtoa to remove trailing zeros (GH-20435)
Mark Dickinson
2020-05-29
1
-0/+11
*
bpo-40792: Make the result of PyNumber_Index() always having exact type int. ...
Serhiy Storchaka
2020-05-28
2
-3/+3
*
bpo-40614: Respect feature version for f-string debug expressions (GH-20196)
Shantanu
2020-05-27
1
-0/+6
*
bpo-40217: Ensure Py_VISIT(Py_TYPE(self)) is always called for PyType_FromSp...
Pablo Galindo
2020-05-27
1
-0/+1
*
bpo-37999: No longer use __int__ in implicit integer conversions. (GH-15636)
Serhiy Storchaka
2020-05-26
7
-140/+18
*
bpo-36290: Fix keytword collision handling in AST node constructors (GH-12382)
RĂ©mi Lapeyre
2020-05-24
1
-3/+24
*
bpo-40679: Use the function's qualname in certain TypeErrors (GH-20236)
Dennis Sweeney
2020-05-22
1
-15/+16
*
bpo-40696: Fix a hang that can arise after gen.throw() (GH-20287)
Chris Jerdonek
2020-05-22
1
-9/+53
*
bpo-40663: Correctly handle annotations with subscripts in ast_unparse.c (GH-...
Batuhan Taskaya
2020-05-18
1
-1/+12
*
bpo-35890: Use RegQueryInfoKeyW and CryptAcquireContextW explicitly (GH-19974)
Minmin Gong
2020-05-18
1
-2/+2
*
bpo-40650: Include winsock2.h in pytime.c, instead of a full windows.h (GH-20...
Minmin Gong
2020-05-18
1
-1/+1
*
bpo-31033: Improve the traceback for cancelled asyncio tasks (GH-19951)
Chris Jerdonek
2020-05-18
1
-0/+14
*
bpo-40636: Clarify the zip built-in docstring. (GH-20118)
Gregory P. Smith
2020-05-15
1
-5/+8
*
Fix typo in code comment in main_loop label. (GH-20068)
Chris Jerdonek
2020-05-15
1
-1/+1
*
bpo-40612: Fix SyntaxError edge cases in traceback formatting (GH-20072)
Guido van Rossum
2020-05-15
1
-19/+47
*
bpo-40334: Correctly identify invalid target in assignment errors (GH-20076)
Pablo Galindo
2020-05-15
1
-5/+8
*
bpo-40602: _Py_hashtable_set() reports rehash failure (GH-20077)
Victor Stinner
2020-05-14
1
-9/+17
*
bpo-40602: Write unit tests for _Py_hashtable_t (GH-20091)
Victor Stinner
2020-05-14
2
-109/+51
*
bpo-40602: Optimize _Py_hashtable_get_ptr() (GH-20066)
Victor Stinner
2020-05-13
1
-24/+23
*
bpo-40609: _Py_hashtable_t values become void* (GH-20065)
Victor Stinner
2020-05-13
2
-99/+41
*
bpo-40609: _tracemalloc allocates traces (GH-20064)
Victor Stinner
2020-05-13
1
-49/+0
*
bpo-40609: Add destroy functions to _Py_hashtable (GH-20062)
Victor Stinner
2020-05-13
2
-23/+38
*
bpo-40609: Remove _Py_hashtable_t.key_size (GH-20060)
Victor Stinner
2020-05-13
2
-68/+49
*
bpo-40602: Add _Py_HashPointerRaw() function (GH-20056)
Victor Stinner
2020-05-12
2
-5/+11
*
bpo-38787: Add PyCFunction_CheckExact() macro for exact type checks (GH-20024)
scoder
2020-05-12
1
-2/+2
*
bpo-40602: Optimize _Py_hashtable for pointer keys (GH-20051)
Victor Stinner
2020-05-12
1
-79/+128
*
bpo-40593: Improve syntax errors for invalid characters in source code. (GH-2...
Serhiy Storchaka
2020-05-12
1
-3/+0
*
bpo-40602: _Py_hashtable_new() uses PyMem_Malloc() (GH-20046)
Victor Stinner
2020-05-12
1
-3/+4
*
bpo-40602: Rename hashtable.h to pycore_hashtable.h (GH-20044)
Victor Stinner
2020-05-12
2
-1/+525
*
bpo-39465: Don't access directly _Py_Identifier members (GH-20043)
Victor Stinner
2020-05-11
1
-1/+1
*
bpo-40528: Improve and clear several aspects of the ASDL definition code for ...
Batuhan Taskaya
2020-05-06
1
-86/+69
*
bpo-40527: Fix command line argument parsing (GH-19955)
Victor Stinner
2020-05-06
1
-7/+16
*
bpo-40513: Per-interpreter GIL (GH-19943)
Victor Stinner
2020-05-05
3
-5/+73
*
bpo-40513: new_interpreter() init GIL earlier (GH-19942)
Victor Stinner
2020-05-05
1
-4/+4
*
bpo-40522: _PyThreadState_Swap() sets autoTSSkey (GH-19939)
Victor Stinner
2020-05-05
2
-0/+30
*
Revert "bpo-40513: Per-interpreter signals pending (GH-19924)" (GH-19932)
Victor Stinner
2020-05-05
2
-30/+37
*
bpo-29587: _PyErr_ChainExceptions() checks exception (GH-19902)
Victor Stinner
2020-05-05
1
-1/+11
*
bpo-40513: Per-interpreter recursion_limit (GH-19929)
Victor Stinner
2020-05-05
1
-10/+14
*
bpo-40514: Add --with-experimental-isolated-subinterpreters (GH-19926)
Victor Stinner
2020-05-05
1
-0/+10
*
bpo-40513: Per-interpreter gil_drop_request (GH-19927)
Victor Stinner
2020-05-05
2
-45/+43
*
bpo-40513: Per-interpreter signals pending (GH-19924)
Victor Stinner
2020-05-05
1
-5/+5
*
bpo-40246: Revert reporting of invalid string prefixes (GH-19888)
Lysandros Nikolaou
2020-05-04
1
-3/+0
[next]