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-41194: Pass module state in Python-ast.c (GH-21284)
Victor Stinner
2020-07-03
1
-1990/+1890
*
bpo-1635741: Release Unicode interned strings at exit (GH-21269)
Victor Stinner
2020-07-01
1
-0/+1
*
bpo-40521: Cleanup finalize_interp_types() (GH-21265)
Victor Stinner
2020-07-01
1
-2/+2
*
bpo-23427: Add sys.orig_argv attribute (GH-20729)
Victor Stinner
2020-06-29
2
-8/+9
*
bpo-39151: Simplify DFS in the assembler (GH-17733)
Pablo Galindo
2020-06-28
1
-33/+18
*
bpo-41076: Pre-feed the parser with the f-string expression location (GH-21054)
Lysandros Nikolaou
2020-06-27
2
-2400/+2400
*
bpo-40521: Optimize PyBytes_FromStringAndSize(str, 0) (GH-21142)
Victor Stinner
2020-06-25
1
-0/+5
*
bpo-40521: Always create the empty tuple singleton (GH-21116)
Victor Stinner
2020-06-24
1
-1/+8
*
bpo-41094: Fix decoding errors with audit when open files. (GH-21095)
Serhiy Storchaka
2020-06-24
1
-4/+19
*
bpo-40521: Fix _PyContext_Fini() (GH-21103)
Victor Stinner
2020-06-24
1
-1/+3
*
bpo-40521: Make empty Unicode string per interpreter (GH-21096)
Victor Stinner
2020-06-23
1
-5/+3
*
bpo-40521: Make MemoryError free list per interpreter (GH-21086)
Victor Stinner
2020-06-23
1
-5/+2
*
bpo-40521: Empty frozenset is no longer a singleton (GH-21085)
Raymond Hettinger
2020-06-23
1
-1/+0
*
bpo-40521: Cleanup code of free lists (GH-21082)
Victor Stinner
2020-06-23
1
-4/+10
*
Call _PyWarnings_InitState() in subinterpreters (GH-21078)
Victor Stinner
2020-06-23
1
-11/+9
*
bpo-40521: Make bytes singletons per interpreter (GH-21074)
Victor Stinner
2020-06-23
1
-3/+1
*
bpo-40521: Make the empty frozenset per interpreter (GH-21068)
Victor Stinner
2020-06-23
1
-3/+1
*
bpo-40521: Make dict free lists per-interpreter (GH-20645)
Victor Stinner
2020-06-23
1
-3/+1
*
bpo-41078: Fix bltinmodule.c with Py_TRACE_REFS (GH-21058)
Victor Stinner
2020-06-22
1
-0/+1
*
bpo-41078: Rename pycore_tupleobject.h to pycore_tuple.h (GH-21056)
Victor Stinner
2020-06-22
4
-22/+21
*
bpo-41061: Fix incorrect expressions in hashtable (GH-21028)
Christian Heimes
2020-06-22
1
-2/+2
*
bpo-41056: Fix reference to deallocated stack in pathconfig (Coverity) (GH-21...
Gregory P. Smith
2020-06-22
1
-1/+1
*
bpo-40939: Rename PyPegen* functions to PyParser* (GH-21016)
Lysandros Nikolaou
2020-06-21
1
-8/+8
*
bpo-40939: Remove the old parser (Part 2) (GH-21005)
Lysandros Nikolaou
2020-06-20
5
-2695/+0
*
bpo-40636: PEP 618: add strict parameter to zip() (GH-20921)
Guido van Rossum
2020-06-19
1
-8/+85
*
bpo-40943: PY_SSIZE_T_CLEAN required for '#' formats (GH-20784)
Victor Stinner
2020-06-19
2
-77/+45
*
bpo-41006: Remove init_sys_streams() hack (GH-20954)
Victor Stinner
2020-06-17
1
-13/+0
*
bpo-36346: Add Py_DEPRECATED to deprecated unicode APIs (GH-20878)
Inada Naoki
2020-06-17
1
-0/+4
*
bpo-40985: Show correct SyntaxError text when last line has a LINECONT (GH-20...
Lysandros Nikolaou
2020-06-16
1
-4/+8
*
bpo-36020: Require vsnprintf() to build Python (GH-20899)
Victor Stinner
2020-06-15
1
-37/+5
*
bpo-36020: Remove snprintf macro in pyerrors.h (GH-20889)
Victor Stinner
2020-06-15
1
-10/+17
*
bpo-40910: PyConfig_Clear() clears _orig_argv (GH-20886)
Victor Stinner
2020-06-15
1
-0/+2
*
bpo-29782: Consolidate _Py_Bit_Length() (GH-20739)
Niklas Fiekas
2020-06-15
1
-15/+0
*
bpo-40957: Fix refleak in _Py_fopen_obj() (GH-20827)
Christian Heimes
2020-06-13
1
-0/+1
*
bpo-40834: Fix truncate when sending str object with channel (GH-20555)
An Long
2020-06-13
1
-1/+1
*
Remove redundant var in PyErr_NewException() (GH-20850)
Hai Shi
2020-06-13
1
-2/+0
*
bpo-40939: Remove the old parser (GH-20768)
Pablo Galindo
2020-06-11
5
-5788/+6
*
bpo-40925: Remove unused stack macro SET_VALUE (GH-20783)
Dong-hee Na
2020-06-11
1
-1/+0
*
bpo-39465: Use _PyInterpreterState_GET() (GH-20788)
Victor Stinner
2020-06-10
2
-8/+8
*
_PyPreConfig_Read() decodes argv at each iteration (GH-20786)
Victor Stinner
2020-06-10
1
-9/+11
*
bpo-40943: Replace PY_FORMAT_SIZE_T with "z" (GH-20781)
Victor Stinner
2020-06-10
2
-12/+7
*
bpo-40910: Export Py_GetArgcArgv() function (GH-20721)
Victor Stinner
2020-06-08
3
-18/+28
*
bpo-40854: Allow overriding sys.platlibdir via PYTHONPLATLIBDIR env-var (GH-2...
Sandro Mani
2020-06-08
2
-7/+27
*
bpo-29882: Add _Py_popcount32() function (GH-20518)
Victor Stinner
2020-06-08
1
-22/+3
*
bpo-39791 native hooks for importlib.resources.files (GH-20576)
Jason R. Coombs
2020-06-08
2
-2168/+2005
*
bpo-40887: Don't use finalized free lists (GH-20700)
Victor Stinner
2020-06-08
1
-0/+12
*
bpo-40887: Fix finalize_interp_clear() for free lists (GH-20698)
Victor Stinner
2020-06-07
1
-27/+17
*
bpo-40870: Invalidate usage of some constants with ast.Name (GH-20649)
Batuhan Taskaya
2020-06-06
1
-0/+22
*
bpo-40521: Make context free list per-interpreter (GH-20644)
Victor Stinner
2020-06-05
2
-20/+20
*
bpo-40521: Make async gen free lists per-interpreter (GH-20643)
Victor Stinner
2020-06-05
1
-1/+5
[next]