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
/
Lib
/
test
Commit message (
Expand
)
Author
Age
Files
Lines
*
bpo-28254: Cleanup test_subprocess.test_preexec_gc_module_failure() (GH-25709)
Victor Stinner
2021-04-29
1
-4/+0
*
bpo-43908: Make array.array type immutable (GH-25696)
Erlend Egeberg Aasland
2021-04-29
1
-0/+6
*
bpo-43908: Make re types immutable (GH-25697)
Erlend Egeberg Aasland
2021-04-29
1
-0/+12
*
bpo-43892: Make match patterns explicit in the AST (GH-25585)
Nick Coghlan
2021-04-29
2
-1/+18
*
bpo-41139: Deprecate `cgi.log()` (GH-25625)
Inada Naoki
2021-04-29
1
-0/+2
*
bpo-43651: Fix EncodingWarning in `os.fdopen()` and test_os (GH-25654)
Inada Naoki
2021-04-29
1
-9/+12
*
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
1
-0/+100
*
bpo-28254: _posixsubprocess uses PyGC_Enable/PyGC_Disable (GH-25693)
Victor Stinner
2021-04-28
1
-12/+0
*
bpo-43757: Make pathlib use os.path.realpath() to resolve symlinks in a path ...
Barney Gale
2021-04-28
2
-3/+114
*
bpo-41559: Change PEP 612 implementation to pure Python (#25449)
Ken Jin
2021-04-28
1
-0/+17
*
bpo-43955: Handle the case where the distutils warning has already been trigg...
Steve Dower
2021-04-28
1
-1/+1
*
bpo-43961: Fix test_logging.test_namer_rotator_inheritance() (GH-25684)
Victor Stinner
2021-04-28
1
-1/+1
*
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
1
-22/+18
*
bpo-43957: [Enum] Deprecate ``TypeError`` from containment checks. (GH-25670)
Ethan Furman
2021-04-27
2
-27/+118
*
bpo-8978: improve tarfile.open error message when lzma / bz2 are missing (GH-...
Anthony Sottile
2021-04-27
2
-0/+12
*
bpo-43864: Silence deprecation warning in test_importlib.test_module_found an...
Shreyan Avigyan
2021-04-27
1
-2/+6
*
bpo-43766: Implement PEP 647 (User-Defined Type Guards) in typing.py (#25282)
Ken Jin
2021-04-27
1
-0/+40
*
bpo-43312: Functions returning default and preferred sysconfig schemes (GH-24...
Tzu-ping Chung
2021-04-27
1
-5/+34
*
bpo-43651: Fix EncodingWarning in fileinput and its test (GH-25648)
Inada Naoki
2021-04-27
1
-26/+27
*
bpo-43651: Fix EncodingWarning in zipfile (GH-25650)
Inada Naoki
2021-04-27
1
-28/+28
*
bpo-43945: [Enum] Deprecate non-standard mixin format() behavior (GH-25649)
Ethan Furman
2021-04-27
1
-0/+8
*
bpo-43651: PEP 597: Fix `socket.makefile()` (GH-25645)
Inada Naoki
2021-04-27
1
-3/+4
*
bpo-38530: Require 50% similarity in NameError and AttributeError suggestions...
Dennis Sweeney
2021-04-27
1
-0/+112
*
bpo-43762: Add audit events for loading of sqlite3 extensions (GH-25246)
Erlend Egeberg Aasland
2021-04-26
2
-0/+44
*
bpo-42904: Change search order of typing.get_type_hints eval (#25632)
Ken Jin
2021-04-26
1
-2/+2
*
Add additional keyword-only tests. (GH-25633)
Eric V. Smith
2021-04-26
1
-1/+29
*
bpo-18233: Add internal methods to access peer chain (GH-25467)
Christian Heimes
2021-04-26
1
-2/+67
*
Add keyword-only fields to dataclasses. (GH=25608)
Eric V. Smith
2021-04-26
1
-0/+159
*
bpo-38490: statistics: Add covariance, Pearson's correlation, and simple line...
Tymoteusz Wołodźko
2021-04-25
1
-0/+78
*
bpo-39529: Deprecate creating new event loop in asyncio.get_event_loop() (GH-...
Serhiy Storchaka
2021-04-25
5
-152/+405
*
bpo-42609: Check recursion depth in the AST validator and optimizer (GH-23744)
Serhiy Storchaka
2021-04-25
1
-7/+12
*
bpo-42737: annotations with complex targets no longer causes any runtime effe...
Batuhan Taskaya
2021-04-25
1
-0/+11
*
bpo-43780: Sync with importlib_metadata 3.10 (GH-25297)
Jason R. Coombs
2021-04-24
2
-0/+14
*
bpo-43921: also accept EOF in post-handshake auth test (GH-25574)
Christian Heimes
2021-04-24
1
-1/+3
*
bpo-37322: Fix ResourceWarning and exception handling in test (GH-25553)
Christian Heimes
2021-04-24
1
-38/+38
*
bpo-31870: Fix test_get_server_certificate_timeout on Windows (GH-25570)
Christian Heimes
2021-04-24
1
-1/+5
*
bpo-31870: Add a timeout parameter to ssl.get_server_certificate() (GH-22270)
Zackery Spytz
2021-04-24
1
-0/+5
*
Silence find_module() DeprecationWarning on Windows tests (GH-25563)
Brett Cannon
2021-04-23
1
-1/+4
*
bpo-43907: add missing memoize call in pure python pickling of bytearray (GH-...
Carl Friedrich Bolz-Tereick
2021-04-23
1
-0/+8
*
bpo-39950: add `pathlib.Path.hardlink_to()` method that supersedes `link_to()...
Barney Gale
2021-04-23
1
-1/+20
*
bpo-43921: ignore failing test_wrong_cert_tls13 on Windows (GH-25561)
Christian Heimes
2021-04-23
1
-2/+10
*
bpo-43538: Add extra arguments to os.startfile (GH-25538)
Steve Dower
2021-04-23
1
-1/+9
*
bpo-43607: Fix urllib handling of Windows paths with \\?\ prefix (GH-25539)
Steve Dower
2021-04-23
1
-0/+18
*
bpo-43914: Highlight invalid ranges in SyntaxErrors (#25525)
Pablo Galindo
2021-04-23
3
-18/+149
*
bpo-41282: (PEP 632) Deprecate distutils.sysconfig (partial implementation of...
Lumír 'Frenzy' Balhar
2021-04-23
2
-0/+4
*
bpo-43920: Make load_verify_locations(cadata) error message consistent (GH-25...
Christian Heimes
2021-04-23
1
-3/+8
*
bpo-37363: Add audit events to the `http.client` module (GH-21321)
Saiyang Gou
2021-04-23
2
-0/+32
*
bpo-38659: Properly re-intialize module variables in test_enum (GH-25516)
Ammar Askar
2021-04-22
1
-2/+13
[next]