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
Commit message (
Expand
)
Author
Age
Files
Lines
*
bpo-42589: Change URL for 'from' link when used in a raised exception (GH-23872)
sblondon
2021-04-29
2
-3/+3
*
bpo-43882 - urllib.parse should sanitize urls containing ASCII newline and ta...
Senthil Kumaran
2021-04-29
4
-0/+54
*
bpo-28254: Add PyGC_ functions to the stable ABI manifest (GH-25720)
Petr Viktorin
2021-04-29
2
-1/+13
*
bpo-42739: Don't use sentinels to mark end of line table. (GH-25657)
Mark Shannon
2021-04-29
13
-4984/+4966
*
bpo-43651: Fix test_logging (GH-25715)
Inada Naoki
2021-04-29
1
-2/+1
*
bpo-43774: Enhance debug build documentation (GH-25712)
Victor Stinner
2021-04-29
4
-69/+53
*
bpo-37892: Use space indents in IDLE Shell (GH-25678)
Terry Jan Reedy
2021-04-29
3
-3/+11
*
bpo-43795: Generate python3dll.c and doc data from manifest (PEP 652) (GH-25315)
Petr Viktorin
2021-04-29
7
-139/+2844
*
bpo-43774: Remove unused PYMALLOC_DEBUG macro (GH-25711)
Victor Stinner
2021-04-29
8
-143/+135
*
bpo-28254: Cleanup test_subprocess.test_preexec_gc_module_failure() (GH-25709)
Victor Stinner
2021-04-29
1
-4/+0
*
bpo-43908: Document Static Types in the C API (GH-25710)
Victor Stinner
2021-04-29
7
-50/+75
*
bpo-43908: Make array.array type immutable (GH-25696)
Erlend Egeberg Aasland
2021-04-29
3
-1/+10
*
bpo-43908: Make re types immutable (GH-25697)
Erlend Egeberg Aasland
2021-04-29
3
-3/+17
*
bpo-43892: Make match patterns explicit in the AST (GH-25585)
Nick Coghlan
2021-04-29
20
-1348/+3431
*
bpo-41139: Deprecate `cgi.log()` (GH-25625)
Inada Naoki
2021-04-29
4
-1/+10
*
bpo-43651: Fix EncodingWarning in `os.fdopen()` and test_os (GH-25654)
Inada Naoki
2021-04-29
2
-13/+16
*
bpo-43651: Fix EncodingWarning in tests. (GH-25655)
Inada Naoki
2021-04-29
3
-17/+21
*
bpo-24275: Don't downgrade unicode-only dicts to mixed on lookups (GH-25186)
Hristo Venev
2021-04-29
2
-3/+106
*
[doc] Be more clear on super() regarding multiple base classes methods (GH-21...
Andre Delfino
2021-04-29
1
-1/+1
*
[doc] Do some polishing in IDEs section (GH-22070)
Andre Delfino
2021-04-29
1
-12/+12
*
Document importlib.metadata.PackagePath.locate method (GH-25669)
Paul Moore
2021-04-28
1
-1/+7
*
bpo-43970: Optimize Path.cwd() in pathlib by not instantiating a class unnece...
kfollstad
2021-04-28
1
-1/+1
*
bpo-37903: IDLE: Shell sidebar with prompts (GH-22682)
Tal Einat
2021-04-28
14
-131/+887
*
bpo-28254: _posixsubprocess uses PyGC_Enable/PyGC_Disable (GH-25693)
Victor Stinner
2021-04-28
2
-123/+5
*
bpo-43908: Add Py_TPFLAGS_IMMUTABLETYPE flag (GH-25520)
Erlend Egeberg Aasland
2021-04-28
4
-1/+24
*
bpo-28254: Add a C-API for controlling the GC state (GH-25687)
scoder
2021-04-28
7
-7/+152
*
bpo-43757: Make pathlib use os.path.realpath() to resolve symlinks in a path ...
Barney Gale
2021-04-28
7
-109/+184
*
bpo-41559: Change PEP 612 implementation to pure Python (#25449)
Ken Jin
2021-04-28
4
-71/+92
*
bpo-43955: Handle the case where the distutils warning has already been trigg...
Steve Dower
2021-04-28
1
-1/+1
*
bpo-43959: clarify the documentation of the PyContextVar C-API (GH-25671)
scoder
2021-04-28
2
-7/+7
*
bpo-43961: Fix test_logging.test_namer_rotator_inheritance() (GH-25684)
Victor Stinner
2021-04-28
2
-1/+3
*
bpo-43962: Fix _PyInterpreterState_IDIncref() (GH-25683)
Victor Stinner
2021-04-28
4
-10/+22
*
bpo-43960: test_pdb resets breakpoints (GH-25673)
Irit Katriel
2021-04-28
1
-0/+1
*
bpo-43776: Remove list call from args in Popen repr (GH-25338)
M. Kocher
2021-04-28
3
-23/+20
*
bpo-41486: Faster bz2/lzma/zlib via new output buffering (GH-21740)
Ma Lin
2021-04-28
7
-254/+670
*
bpo-43963: Add _signal module state (GH-25676)
Victor Stinner
2021-04-28
1
-84/+153
*
bpo-37751: Update `codecs.register()` doc. (GH-25643)
Inada Naoki
2021-04-28
1
-3/+7
*
bpo-43963: Fix import _signal in subinterpreters (GH-25674)
Victor Stinner
2021-04-27
2
-27/+43
*
bpo-43957: [Enum] Deprecate ``TypeError`` from containment checks. (GH-25670)
Ethan Furman
2021-04-27
5
-36/+148
*
bpo-8978: improve tarfile.open error message when lzma / bz2 are missing (GH-...
Anthony Sottile
2021-04-27
4
-2/+19
*
Fix generated file name for installer builds on macOS 11+. (GH-25661)
Ned Deily
2021-04-27
1
-6/+28
*
bpo-43492: Update macOS installer to use SQLite 3.35.5 (GH-25640)
Erlend Egeberg Aasland
2021-04-27
2
-3/+4
*
bpo-43492: Upgrade Windows installer to use SQLite 3.35.5 (GH-25641)
Erlend Egeberg Aasland
2021-04-27
4
-3/+4
*
bpo-43864: Silence deprecation warning in test_importlib.test_module_found an...
Shreyan Avigyan
2021-04-27
1
-2/+6
*
bpo-43766: Fix TypeGuard docs (#25660)
Ken Jin
2021-04-27
2
-8/+7
*
bpo-43766: Implement PEP 647 (User-Defined Type Guards) in typing.py (#25282)
Ken Jin
2021-04-27
5
-0/+175
*
bpo-43312: Functions returning default and preferred sysconfig schemes (GH-24...
Tzu-ping Chung
2021-04-27
4
-38/+131
*
Fix thread locks in zlib module may go wrong in rare case. (#22126)
Ma Lin
2021-04-27
2
-9/+11
*
bpo-43651: Fix EncodingWarning in fileinput and its test (GH-25648)
Inada Naoki
2021-04-27
2
-35/+39
*
bpo-43651: Fix EncodingWarning in zipfile (GH-25650)
Inada Naoki
2021-04-27
2
-28/+31
[next]