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
*
Revert "bpo-38659: [Enum] add _simple_enum decorator (GH-25285)" (GH-25476)
Ethan Furman
2021-04-20
9
-478/+10
*
bpo-38659: [Enum] add _simple_enum decorator (GH-25285)
Ethan Furman
2021-04-20
9
-10/+478
*
bpo-25460: Surround suggestions by quotes (GH-25473)
Pablo Galindo
2021-04-19
1
-14/+14
*
bpo-43669: More test_ssl cleanups (GH-25470)
Christian Heimes
2021-04-19
1
-78/+21
*
bpo-43880: Show DeprecationWarnings for deprecated ssl module features (GH-25...
Christian Heimes
2021-04-19
8
-161/+132
*
bpo-42854: Use SSL_read/write_ex() (GH-25468)
Christian Heimes
2021-04-19
1
-0/+11
*
bpo-36076: Add SNI support to ssl.get_server_certificate. (GH-16820)
juhovh
2021-04-18
1
-1/+25
*
bpo-38530: Cover more error paths in error suggestion functions (GH-25462)
Pablo Galindo
2021-04-17
1
-0/+10
*
bpo-37630: Do not skip the sha3 tests in case of missing builtin sha3 module ...
stratakis
2021-04-17
1
-22/+0
*
bpo-38530: Include builtins in NameError suggestions (GH-25460)
Pablo Galindo
2021-04-17
1
-4/+20
*
bpo-43669: PEP 644: Require OpenSSL 1.1.1 or newer (GH-23014)
Christian Heimes
2021-04-17
1
-93/+26
*
bpo-43522: Fix SSLContext.hostname_checks_common_name (GH-24899)
Christian Heimes
2021-04-17
15
-709/+986
*
bpo-38530: Match exactly AttributeError and NameError when offering suggestio...
Pablo Galindo
2021-04-16
1
-0/+15
*
bpo-43843: libregrtest uses threading.excepthook (GH-25400)
Victor Stinner
2021-04-16
5
-4/+86
*
bpo-43842: Fix race condition in test_logging SMTP test (GH-25436)
Victor Stinner
2021-04-16
1
-2/+5
*
bpo-41282: Fix distutils.utils.byte_compile() DeprecationWarning (GH-25406)
Victor Stinner
2021-04-16
1
-4/+10
*
bpo-43822: Improve syntax errors for missing commas (GH-25377)
Pablo Galindo
2021-04-15
2
-6/+20
*
bpo-43744: [Enum] fix ``_is_private`` (GH-25349)
Ethan Furman
2021-04-15
1
-0/+25
*
bpo-43846: Use less stack for large literals and calls (GH-25403)
Mark Shannon
2021-04-15
1
-0/+26
*
bpo-43823: Improve syntax errors for invalid dictionary literals (GH-25378)
Pablo Galindo
2021-04-15
1
-0/+32
*
bpo-38530: Make sure that failing to generate suggestions on failure will not...
Pablo Galindo
2021-04-14
1
-0/+14
*
bpo-38530: Offer suggestions on NameError (GH-25397)
Pablo Galindo
2021-04-14
1
-0/+123
*
bpo-43825: Fix deprecation warnings in test_cmd_line and test_collections (GH...
Karthikeyan Singaravelan
2021-04-14
2
-2/+2
*
bpo-43712 : fileinput: Add encoding parameter (GH-25272)
Inada Naoki
2021-04-14
1
-12/+38
*
bpo-38530: Offer suggestions on AttributeError (#16856)
Pablo Galindo
2021-04-14
1
-0/+159
*
bpo-43680: Deprecate io.OpenWrapper (GH-25357)
Victor Stinner
2021-04-14
1
-2/+8
*
bpo-43080: pprint for dataclass instances (GH-24389)
Lewis Gaul
2021-04-13
1
-1/+84
*
bpo-43797: Handle correctly invalid assignments inside function calls and gen...
Pablo Galindo
2021-04-13
2
-2/+14
*
bpo41515: Fix assert in test which throws SyntaxWarning. (#25379)
Karthikeyan Singaravelan
2021-04-13
1
-1/+1
*
Ensure that early = are not matched by the parser as invalid comparisons (GH-...
Pablo Galindo
2021-04-13
1
-0/+5
*
bpo-41515: Fix KeyError raised in get_type_hints (GH-25352)
Karthikeyan Singaravelan
2021-04-12
1
-0/+6
*
bpo-42904: Fix get_type_hints for class local namespaces (GH-24201)
Ken Jin
2021-04-12
1
-1/+8
*
bpo-43797: Improve syntax error for invalid comparisons (#25317)
Pablo Galindo
2021-04-12
8
-64/+83
*
bpo-42248: [Enum] ensure exceptions raised in ``_missing_`` are released (GH-...
Ethan Furman
2021-04-12
1
-0/+32
*
bpo-34311: Add locale.localize (GH-15275)
Cédric Krier
2021-04-12
1
-0/+28
*
bpo-43723: Fix deprecation error caused by thread.setDaemon() (GH-25361)
Christian Heimes
2021-04-12
3
-4/+4
*
bpo-41561: Fix testing with OpenSSL 1.0.2 (GH-25355)
Christian Heimes
2021-04-12
1
-1/+4
*
bpo-43723: Deprecate camelCase aliases from threading (GH-25174)
Jelle Zijlstra
2021-04-12
1
-8/+27
*
bpo-43682: Make staticmethod objects callable (GH-25117)
Victor Stinner
2021-04-11
2
-5/+9
*
bpo-42967: coerce bytes separator to string in urllib.parse_qs(l) (#24818)
Ken Jin
2021-04-11
1
-0/+4
*
bpo-43751: Fix anext() bug where it erroneously returned None (GH-25238)
Dennis Sweeney
2021-04-11
1
-5/+135
*
bpo-43772: Fix TypeVar.__ror__ (GH-25339)
Jelle Zijlstra
2021-04-11
1
-0/+10
*
bpo-43783: Add ParamSpecArgs/Kwargs (GH-25298)
Jelle Zijlstra
2021-04-11
1
-4/+12
*
bpo-43764: Add match_args=False parameter to dataclass decorator and to make_...
Eric V. Smith
2021-04-11
1
-0/+41
*
bpo-43798: Add source location attributes to alias (GH-25324)
Matthew Suozzo
2021-04-10
3
-5/+29
*
bpo-43794: OpenSSL 3.0.0: set OP_IGNORE_UNEXPECTED_EOF by default (GH-25309)
Christian Heimes
2021-04-09
1
-1/+3
*
bpo-43682: @staticmethod inherits attributes (GH-25268)
Victor Stinner
2021-04-09
4
-13/+41
*
bpo-4379: Skip TLS 1.0/1.1 tests under OpenSSL 3.0.0 (GH-25304)
Christian Heimes
2021-04-09
1
-0/+5
*
bpo-43764: Fix `__match_args__` generation logic for dataclasses (GH-25284)
Brandt Bucher
2021-04-08
1
-0/+8
*
Fix broken test for MutableSet.pop() (GH-25209)
Stepan Sindelar
2021-04-07
1
-2/+6
[next]