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-42599: Remove useless PyModule_GetWarningsModule() (GH-23691)
Hai Shi
2020-12-08
2
-11/+0
*
bpo-32381: Fix PyRun_SimpleFileExFlags() encoding (GH-23642)
Victor Stinner
2020-12-08
1
-92/+132
*
bpo-41462: Add os.set_blocking() support for VxWorks RTOS (GH-21713)
pxinwr
2020-12-07
1
-1/+3
*
bpo-42536: GC track recycled tuples (GH-23623)
Brandt Bucher
2020-12-05
1
-0/+5
*
bpo-26131: Deprecate usage of load_module() (GH-23469)
Brett Cannon
2020-12-04
3
-2857/+2901
*
bpo-42246: Don't forget the entry block when ensuring that all exits have a l...
Mark Shannon
2020-12-04
3
-4/+10
*
bpo-42521: Add note about 'Python -d' only working on debug builds (GH-23607)
Pablo Galindo
2020-12-02
1
-1/+2
*
bpo-42246: Make sure that line number is correct after a return, as required ...
Mark Shannon
2020-12-02
4
-4813/+4923
*
bpo-42500: Fix recursion in or after except (GH-23568)
Mark Shannon
2020-12-02
4
-13/+16
*
bpo-40939: Restore some stable API functions incorrectly deleted (GH-23606)
Pablo Galindo
2020-12-02
1
-8/+103
*
bpo-42519: Replace PyObject_MALLOC() with PyObject_Malloc() (GH-23587)
Victor Stinner
2020-12-01
1
-1/+1
*
bpo-42519: Replace PyMem_MALLOC() with PyMem_Malloc() (GH-23586)
Victor Stinner
2020-12-01
5
-16/+16
*
bpo-42202: Store func annotations as a tuple (GH-23316)
Yurii Karabas
2020-11-25
3
-153/+137
*
bpo-42260: Improve error handling in _PyConfig_FromDict (GH-23488)
Serhiy Storchaka
2020-11-24
1
-4/+9
*
bpo-42403: Use @staticmethod in importlib (GH-23395)
Victor Stinner
2020-11-20
2
-2340/+2339
*
bpo-42403: Simplify importlib external bootstrap (GH-23397)
Victor Stinner
2020-11-19
2
-4481/+4443
*
bpo-1635741: Port _warnings to the multi-phase init (GH-23379)
Victor Stinner
2020-11-18
1
-40/+30
*
bpo-1635741: Convert _imp to multi-phase init (GH-23378)
Victor Stinner
2020-11-18
2
-79/+120
*
bpo-40998: Address compiler warnings found by ubsan (GH-20929)
Christian Heimes
2020-11-18
1
-4/+3
*
bpo-40998: Fix a refleak in create_filter() (GH-23365)
Victor Stinner
2020-11-18
1
-3/+5
*
bpo-41686: Move _Py_RestoreSignals() to signalmodule.c (GH-23353)
Victor Stinner
2020-11-17
1
-23/+0
*
bpo-42349: Compiler clean up. More yak-shaving for PEP 626. (GH-23267)
Mark Shannon
2020-11-17
4
-4632/+4702
*
bpo-41713: Remove PyOS_InitInterrupts() function (GH-23342)
Victor Stinner
2020-11-17
1
-26/+3
*
bpo-37205: time.time() cannot fail with fatal error (GH-23314)
Victor Stinner
2020-11-16
2
-112/+132
*
bpo-37205: time.perf_counter() and time.monotonic() are system-wide (GH-23284)
Victor Stinner
2020-11-16
1
-14/+2
*
bpo-42131: Add PEP 451-related methods to zipimport (GH-23187)
Brett Cannon
2020-11-13
1
-943/+990
*
bpo-42296: On Windows, fix CTRL+C regression (GH-23257)
Victor Stinner
2020-11-13
1
-5/+33
*
bpo-42246: Fix memory leak in compiler (GH-23256)
Mark Shannon
2020-11-13
1
-7/+13
*
bpo-42246: Eliminate jumps to exit blocks by copying those blocks. (#23251)
Mark Shannon
2020-11-12
4
-4538/+4539
*
bpo-42260: Initialize time and warnings earlier at startup (GH-23249)
Victor Stinner
2020-11-12
4
-130/+62
*
Bump magic number. (GH-23245)
Mark Shannon
2020-11-12
1
-111/+111
*
bpo-42246: Partial implementation of PEP 626. (GH-23113)
Mark Shannon
2020-11-12
6
-4826/+4859
*
bpo-42260: Fix _PyConfig_Read() if compute_path_config=0 (GH-23220)
Victor Stinner
2020-11-10
3
-77/+18
*
bpo-42260: Compute the path config in the main init (GH-23211)
Victor Stinner
2020-11-10
3
-65/+63
*
bpo-41100: Support macOS 11 and Apple Silicon (GH-22855)
Ronald Oussoren
2020-11-08
2
-13/+60
*
bpo-42282: Fold constants inside named expressions (GH-23190)
Nick Coghlan
2020-11-07
1
-11/+43
*
bpo-42260: PyConfig_Read() only parses argv once (GH-23168)
Victor Stinner
2020-11-05
1
-4/+7
*
bpo-42260: Add _PyConfig_FromDict() (GH-23167)
Victor Stinner
2020-11-05
2
-58/+356
*
bpo-42266: Handle monkey-patching descriptors in LOAD_ATTR cache (GH-23157)
Pablo Galindo
2020-11-05
1
-7/+1
*
bpo-42260: Add _PyInterpreterState_SetConfig() (GH-23158)
Victor Stinner
2020-11-04
3
-10/+96
*
bpo-42260: Main init modify sys.flags in-place (GH-23150)
Victor Stinner
2020-11-04
2
-73/+85
*
bpo-1635741: Fix ref leak in _PyWarnings_Init() error path (GH-23151)
Victor Stinner
2020-11-04
2
-11/+5
*
bpo-1635741: _ast uses PyModule_AddObjectRef() (GH-23146)
Victor Stinner
2020-11-04
1
-216/+115
*
bpo-1635741: _contextvars uses PyModule_AddType() (GH-23147)
Victor Stinner
2020-11-04
1
-3/+3
*
bpo-1635741: Add PyModule_AddObjectRef() function (GH-23122)
Victor Stinner
2020-11-04
1
-31/+39
*
bpo-42236: os.device_encoding() respects UTF-8 Mode (GH-23119)
Victor Stinner
2020-11-04
2
-17/+14
*
bpo-41796: Call _PyAST_Fini() earlier to fix a leak (GH-23131)
Victor Stinner
2020-11-03
3
-19/+33
*
bpo-26789: Fix logging.FileHandler._open() at exit (GH-23053)
Victor Stinner
2020-11-02
1
-1/+1
*
bpo-41796: Make _ast module state per interpreter (GH-23024)
Victor Stinner
2020-11-02
1
-112/+133
*
bpo-42236: Enhance init and encoding documentation (GH-23109)
Victor Stinner
2020-11-02
2
-6/+5
[next]