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
Commit message (
Expand
)
Author
Age
Files
Lines
*
bpo-39950: add `pathlib.Path.hardlink_to()` method that supersedes `link_to()...
Barney Gale
2021-04-23
2
-1/+35
*
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
2
-1/+27
*
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
12
-446/+205
*
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
3
-0/+36
*
Reformat idlelib colorizer (GH-25479)
E-Paine
2021-04-23
1
-16/+20
*
bpo-35306: Avoid raising OSError from pathlib.Path.exists when passed an inva...
Steve Dower
2021-04-22
1
-0/+1
*
bpo-43284: Update platform.win32_ver to use _syscmd_ver instead of sys.getwin...
Shreyan Avigyan
2021-04-22
1
-10/+11
*
bpo-43475: Fix worst case collision behavior for NaN instances (GH-25493)
Raymond Hettinger
2021-04-22
1
-1/+1
*
bpo-38659: Properly re-intialize module variables in test_enum (GH-25516)
Ammar Askar
2021-04-22
1
-2/+13
*
bpo-43756: Add new audit event for new arguments added to glob.glob (GH-25239)
Saiyang Gou
2021-04-21
1
-0/+1
*
bpo-38659: [Enum] add _simple_enum decorator (GH-25497)
Ethan Furman
2021-04-21
18
-33/+866
*
bpo-43859: Improve the error message for IndentationError exceptions (GH-25431)
Pablo Galindo
2021-04-21
2
-1/+133
*
bpo-38605: Revert making 'from __future__ import annotations' the default (GH...
Pablo Galindo
2021-04-21
22
-380/+260
*
bpo-43799: Also define SSLv3_method() (GH-25481)
Christian Heimes
2021-04-20
1
-8/+0
*
Improve the error message for choices(population, 10) (GH-25267)
Raymond Hettinger
2021-04-20
1
-1/+9
*
Revert "bpo-38659: [Enum] add _simple_enum decorator (GH-25285)" (GH-25476)
Ethan Furman
2021-04-20
18
-867/+33
*
bpo-38659: [Enum] add _simple_enum decorator (GH-25285)
Ethan Furman
2021-04-20
18
-33/+867
*
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
10
-170/+182
*
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
2
-2/+26
*
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
*
Fix typo in a dataclasses comment. (GH-25454)
Eric V. Smith
2021-04-17
1
-1/+1
*
bpo-43669: PEP 644: Require OpenSSL 1.1.1 or newer (GH-23014)
Christian Heimes
2021-04-17
2
-101/+28
*
bpo-43522: Fix SSLContext.hostname_checks_common_name (GH-24899)
Christian Heimes
2021-04-17
15
-709/+986
*
bpo-43867: multiprocessing Server catchs SystemExit (GH-25441)
Victor Stinner
2021-04-16
1
-6/+14
*
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-43844: Fix PendingDeprecationWarning in test_lib2to3 (GH-25407)
Victor Stinner
2021-04-16
1
-4/+8
*
bpo-41282: Fix distutils.utils.byte_compile() DeprecationWarning (GH-25406)
Victor Stinner
2021-04-16
3
-7/+17
*
bpo-40443: Remove unused imports (GH-25429)
Victor Stinner
2021-04-16
2
-2/+0
*
bpo-43822: Improve syntax errors for missing commas (GH-25377)
Pablo Galindo
2021-04-15
3
-11/+26
*
bpo-43744: [Enum] fix ``_is_private`` (GH-25349)
Ethan Furman
2021-04-15
2
-2/+28
*
[Enum] fix doc string (GH-25376)
Ethan Furman
2021-04-15
1
-2/+4
*
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-43296: Handle sqlite3_value_blob() errors (GH-24674)
Erlend Egeberg Aasland
2021-04-14
1
-0/+4
*
bpo-38530: Make sure that failing to generate suggestions on failure will not...
Pablo Galindo
2021-04-14
1
-0/+14
*
bpo-41282: (PEP 632) Load install schemes from sysconfig (GH-24549)
Lumír 'Frenzy' Balhar
2021-04-14
2
-38/+41
*
bpo-38530: Offer suggestions on NameError (GH-25397)
Pablo Galindo
2021-04-14
1
-0/+123
*
bpo-43265: Improve sqlite3.Connection.backup error handling (GH-24586)
Erlend Egeberg Aasland
2021-04-14
1
-4/+1
*
bpo-43825: Fix deprecation warnings in test_cmd_line and test_collections (GH...
Karthikeyan Singaravelan
2021-04-14
2
-2/+2
[next]