Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
python
/
cpython3
/
8c0be6fd9101746235b63ddfb84106d1e9ca286b
/
Python
0d6aa7f
bpo-41681: Fix for `f-string/str.format` error description when using 2 `,` in format specifier (GH-22036)
by han-solo
· 5 years ago
75c80b0
closes bpo-41533: Fix a potential memory leak when allocating a stack (GH-21847)
by Tony Solomonik
· 5 years ago
97eaf2b
bpo-41524: fix pointer bug in PyOS_mystr{n}icmp (GH-21845)
by wmeehan
· 5 years ago
8aa163e
bpo-1635741: Explict GC collect after PyInterpreterState_Clear() (GH-21902)
by Hai Shi
· 5 years ago
c51db0e
bpo-41531: Fix compilation of dict literals with more than 0xFFFF elements (GH-21850)
by Pablo Galindo
· 5 years ago
8ecc0c4
bpo-1635741: Clean sysdict and builtins of interpreter at exit (GH-21605)
by Hai Shi
· 5 years ago
582aaf1
bpo-41463: Generate information about jumps from 'opcode.py' rather than duplicating it in 'compile.c' (GH-21714)
by Mark Shannon
· 5 years ago
6e8128f
bpo-41323: Perform 'peephole' optimizations directly on the CFG. (GH-21517)
by Mark Shannon
· 5 years ago
5798f78
bpo-41340: Removed fallback implementation for strdup (GH-21634)
by wasiher
· 5 years ago
cb9879b
bpo-40941: Unify implicit and explicit state in the frame and generator objects into a single value. (GH-20803)
by Mark Shannon
· 5 years ago
ea62a4b
Fix -Wstrict-prototypes warning in thread_pthread.h. (GH-21477)
by Benjamin Peterson
· 5 years ago
4c8f09d
bpo-36346: Make using the legacy Unicode C API optional (GH-21437)
by Serhiy Storchaka
· 5 years ago
8f42748
bpo-29778: test_embed tests the path configuration (GH-21306)
by Victor Stinner
· 5 years ago
bd46174
bpo-41218: Only mark async code with CO_COROUTINE. (#21357)
by Matthias Bussonnier
· 5 years ago
dcbaa1b
bpo-29778: Ensure python3.dll is loaded from correct locations when Python is embedded (GH-21297)
by Steve Dower
· 5 years ago
1f76453
bpo-41204: Fix compiler warning in ast_type_init() (GH-21307)
by Victor Stinner
· 5 years ago
daa0fe0
bpo-41162: Clear audit hooks later during finalization (GH-21222)
by Konge
· 5 years ago
d160e0f
bpo-41180: Audit code.__new__ when unmarshalling (GH-21271)
by tkmikan
· 5 years ago
b1cc6ba
bpo-41194: Convert _ast extension to PEP 489 (GH-21293)
by Victor Stinner
· 5 years ago
91e1bc1
bpo-41194: The _ast module cannot be loaded more than once (GH-21290)
by Victor Stinner
· 5 years ago
74419f0
bpo-41194: Pass module state in Python-ast.c (GH-21284)
by Victor Stinner
· 5 years ago
666ecfb
bpo-1635741: Release Unicode interned strings at exit (GH-21269)
by Victor Stinner
· 5 years ago
90db465
bpo-40521: Cleanup finalize_interp_types() (GH-21265)
by Victor Stinner
· 5 years ago
dd8a93e
bpo-23427: Add sys.orig_argv attribute (GH-20729)
by Victor Stinner
· 5 years ago
60eb9f1
bpo-39151: Simplify DFS in the assembler (GH-17733)
by Pablo Galindo
· 5 years ago
1f0f4ab
bpo-41076: Pre-feed the parser with the f-string expression location (GH-21054)
by Lysandros Nikolaou
· 5 years ago
91698d8
bpo-40521: Optimize PyBytes_FromStringAndSize(str, 0) (GH-21142)
by Victor Stinner
· 5 years ago
0430dfa
bpo-40521: Always create the empty tuple singleton (GH-21116)
by Victor Stinner
· 5 years ago
6c6810d
bpo-41094: Fix decoding errors with audit when open files. (GH-21095)
by Serhiy Storchaka
· 5 years ago
cde283d
bpo-40521: Fix _PyContext_Fini() (GH-21103)
by Victor Stinner
· 5 years ago
f363d0a
bpo-40521: Make empty Unicode string per interpreter (GH-21096)
by Victor Stinner
· 5 years ago
281cce1
bpo-40521: Make MemoryError free list per interpreter (GH-21086)
by Victor Stinner
· 5 years ago
f9bd05e
bpo-40521: Empty frozenset is no longer a singleton (GH-21085)
by Raymond Hettinger
· 5 years ago
522691c
bpo-40521: Cleanup code of free lists (GH-21082)
by Victor Stinner
· 5 years ago
30a8933
Call _PyWarnings_InitState() in subinterpreters (GH-21078)
by Victor Stinner
· 5 years ago
c41eed1
bpo-40521: Make bytes singletons per interpreter (GH-21074)
by Victor Stinner
· 5 years ago
261cfed
bpo-40521: Make the empty frozenset per interpreter (GH-21068)
by Victor Stinner
· 5 years ago
b4e85ca
bpo-40521: Make dict free lists per-interpreter (GH-20645)
by Victor Stinner
· 5 years ago
c96d00e
bpo-41078: Fix bltinmodule.c with Py_TRACE_REFS (GH-21058)
by Victor Stinner
· 5 years ago
384621c
bpo-41078: Rename pycore_tupleobject.h to pycore_tuple.h (GH-21056)
by Victor Stinner
· 5 years ago
4901ea9
bpo-41061: Fix incorrect expressions in hashtable (GH-21028)
by Christian Heimes
· 5 years ago
81328f3
bpo-41056: Fix reference to deallocated stack in pathconfig (Coverity) (GH-21013)
by Gregory P. Smith
· 5 years ago
564cd18
bpo-40939: Rename PyPegen* functions to PyParser* (GH-21016)
by Lysandros Nikolaou
· 5 years ago
314858e
bpo-40939: Remove the old parser (Part 2) (GH-21005)
by Lysandros Nikolaou
· 5 years ago
310f6aa
bpo-40636: PEP 618: add strict parameter to zip() (GH-20921)
by Guido van Rossum
· 5 years ago
37bb289
bpo-40943: PY_SSIZE_T_CLEAN required for '#' formats (GH-20784)
by Victor Stinner
· 5 years ago
1bf7959
bpo-41006: Remove init_sys_streams() hack (GH-20954)
by Victor Stinner
· 5 years ago
2c4928d
bpo-36346: Add Py_DEPRECATED to deprecated unicode APIs (GH-20878)
by Inada Naoki
· 5 years ago
113e2b0
bpo-40985: Show correct SyntaxError text when last line has a LINECONT (GH-20888)
by Lysandros Nikolaou
· 5 years ago
7ab92d5
bpo-36020: Require vsnprintf() to build Python (GH-20899)
by Victor Stinner
· 5 years ago
e822e37
bpo-36020: Remove snprintf macro in pyerrors.h (GH-20889)
by Victor Stinner
· 5 years ago
e2d47a0
bpo-40910: PyConfig_Clear() clears _orig_argv (GH-20886)
by Victor Stinner
· 5 years ago
794e7d1
bpo-29782: Consolidate _Py_Bit_Length() (GH-20739)
by Niklas Fiekas
· 5 years ago
9672912
bpo-40957: Fix refleak in _Py_fopen_obj() (GH-20827)
by Christian Heimes
· 5 years ago
29c1172
bpo-40834: Fix truncate when sending str object with channel (GH-20555)
by An Long
· 5 years ago
1c209e3
Remove redundant var in PyErr_NewException() (GH-20850)
by Hai Shi
· 5 years ago
1ed83ad
bpo-40939: Remove the old parser (GH-20768)
by Pablo Galindo
· 5 years ago
33faf5c
bpo-40925: Remove unused stack macro SET_VALUE (GH-20783)
by Dong-hee Na
· 5 years ago
1bcc32f
bpo-39465: Use _PyInterpreterState_GET() (GH-20788)
by Victor Stinner
· 5 years ago
8eb4aea
_PyPreConfig_Read() decodes argv at each iteration (GH-20786)
by Victor Stinner
· 5 years ago
d36cf5f
bpo-40943: Replace PY_FORMAT_SIZE_T with "z" (GH-20781)
by Victor Stinner
· 5 years ago
e81f6e6
bpo-40910: Export Py_GetArgcArgv() function (GH-20721)
by Victor Stinner
· 5 years ago
8f023a2
bpo-40854: Allow overriding sys.platlibdir via PYTHONPLATLIBDIR env-var (GH-20605)
by Sandro Mani
· 5 years ago
c6b292c
bpo-29882: Add _Py_popcount32() function (GH-20518)
by Victor Stinner
· 5 years ago
843c277
bpo-39791 native hooks for importlib.resources.files (GH-20576)
by Jason R. Coombs
· 5 years ago
bcb1983
bpo-40887: Don't use finalized free lists (GH-20700)
by Victor Stinner
· 5 years ago
7907f8c
bpo-40887: Fix finalize_interp_clear() for free lists (GH-20698)
by Victor Stinner
· 5 years ago
68874a8
bpo-40870: Invalidate usage of some constants with ast.Name (GH-20649)
by Batuhan Taskaya
· 5 years ago
e005ead
bpo-40521: Make context free list per-interpreter (GH-20644)
by Victor Stinner
· 5 years ago
78a02c2
bpo-40521: Make async gen free lists per-interpreter (GH-20643)
by Victor Stinner
· 5 years ago
88ec919
bpo-40521: Make list free list per-interpreter (GH-20642)
by Victor Stinner
· 5 years ago
3744ed2
bpo-40521: Make frame free list per-interpreter (GH-20638)
by Victor Stinner
· 5 years ago
7daba6f
bpo-40521: Make slice cache per-interpreter (GH-20637)
by Victor Stinner
· 5 years ago
2ba5937
bpo-40521: Make float free list per-interpreter (GH-20636)
by Victor Stinner
· 5 years ago
69ac6e5
bpo-40521: Make tuple free list per-interpreter (GH-20247)
by Victor Stinner
· 5 years ago
232dda6
bpo-40679: Fix _PyEval_EvalCode() crash if qualname is NULL (GH-20615)
by Victor Stinner
· 5 years ago
df773f8
bpo-40471: Fix grammar typo in 'issubclass' docstring (GH-19847)
by Alex Povel
· 5 years ago
317bab0
PyOS_AfterFork_Child() pass tstate to _PyEval_ReInitThreads() (GH-20598)
by Victor Stinner
· 5 years ago
45b34a0
bpo-40232: _PyImport_ReInitLock() can now safely use its lock (GH-20597)
by Victor Stinner
· 5 years ago
26881c8
PyOS_AfterFork_Child() uses PyStatus (GH-20596)
by Victor Stinner
· 5 years ago
90d2970
Fix MSVC warnings in pythonrun.c (#GH-0587)
by Ammar Askar
· 5 years ago
3026cad
bpo-40826: Add _Py_EnsureTstateNotNULL() macro (GH-20571)
by Victor Stinner
· 5 years ago
db64f12
Make sure that keyword arguments are merged into the arguments dictionary when dict unpacking and keyword arguments are interleaved. (GH-20553)
by Mark Shannon
· 5 years ago
895c9c1
bpo-40780: Fix failure of _Py_dg_dtoa to remove trailing zeros (GH-20435)
by Mark Dickinson
· 5 years ago
5f4b229d
bpo-40792: Make the result of PyNumber_Index() always having exact type int. (GH-20443)
by Serhiy Storchaka
· 5 years ago
c116c94
bpo-40614: Respect feature version for f-string debug expressions (GH-20196)
by Shantanu
· 5 years ago
1cf15af
bpo-40217: Ensure Py_VISIT(Py_TYPE(self)) is always called for PyType_FromSpec types (reverts GH-19414) (GH-20264)
by Pablo Galindo
· 5 years ago
578c395
bpo-37999: No longer use __int__ in implicit integer conversions. (GH-15636)
by Serhiy Storchaka
· 5 years ago
c73914a
bpo-36290: Fix keytword collision handling in AST node constructors (GH-12382)
by Rémi Lapeyre
· 5 years ago
b5cc208
bpo-40679: Use the function's qualname in certain TypeErrors (GH-20236)
by Dennis Sweeney
· 5 years ago
7c30d12
bpo-40696: Fix a hang that can arise after gen.throw() (GH-20287)
by Chris Jerdonek
· 5 years ago
2135e10
bpo-40663: Correctly handle annotations with subscripts in ast_unparse.c (GH-20156)
by Batuhan Taskaya
· 5 years ago
98e42d1
bpo-35890: Use RegQueryInfoKeyW and CryptAcquireContextW explicitly (GH-19974)
by Minmin Gong
· 5 years ago
f660567
bpo-40650: Include winsock2.h in pytime.c, instead of a full windows.h (GH-20137)
by Minmin Gong
· 5 years ago
da742ba
bpo-31033: Improve the traceback for cancelled asyncio tasks (GH-19951)
by Chris Jerdonek
· 5 years ago
6a5d3ff
bpo-40636: Clarify the zip built-in docstring. (GH-20118)
by Gregory P. Smith
· 5 years ago
4a12d12
Fix typo in code comment in main_loop label. (GH-20068)
by Chris Jerdonek
· 5 years ago
15bc9ab
bpo-40612: Fix SyntaxError edge cases in traceback formatting (GH-20072)
by Guido van Rossum
· 5 years ago
16ab070
bpo-40334: Correctly identify invalid target in assignment errors (GH-20076)
by Pablo Galindo
· 5 years ago
d2dc827
bpo-40602: _Py_hashtable_set() reports rehash failure (GH-20077)
by Victor Stinner
· 5 years ago
Next »