diff options
author | Totosuki <116938397+totosuki@users.noreply.github.com> | 2024-12-14 07:38:54 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-12-14 07:38:54 (GMT) |
commit | 78e766f2e217572eacefba9ec31396b016aa88c2 (patch) | |
tree | 2a6ef694ed9ba5e4ac2d5c75866b97e29bad46e8 | |
parent | c0264fc57c51e68015bef95a2208711356b57c1f (diff) | |
download | cpython-78e766f2e217572eacefba9ec31396b016aa88c2.zip cpython-78e766f2e217572eacefba9ec31396b016aa88c2.tar.gz cpython-78e766f2e217572eacefba9ec31396b016aa88c2.tar.bz2 |
Fix typo in docstring: quadruple double quotes (#127913)
-rw-r--r-- | Lib/test/test_ssl.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_ssl.py b/Lib/test/test_ssl.py index 59f37b3..3f6f890 100644 --- a/Lib/test/test_ssl.py +++ b/Lib/test/test_ssl.py @@ -151,7 +151,7 @@ def is_ubuntu(): if is_ubuntu(): def seclevel_workaround(*ctxs): - """"Lower security level to '1' and allow all ciphers for TLS 1.0/1""" + """Lower security level to '1' and allow all ciphers for TLS 1.0/1""" for ctx in ctxs: if ( hasattr(ctx, "minimum_version") and |