Skip to content

Commit 95d19fc

Browse files
[3.14] Docs: fix RFC index reference for TLS 1.3 (GH-142262) (#142340)
Docs: fix RFC index reference for TLS 1.3 (GH-142262) (cherry picked from commit 61823a5) Co-authored-by: Y. Z. Chen <[email protected]>
1 parent 5a639ca commit 95d19fc

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Lib/ssl.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ class _TLSContentType:
186186
class _TLSAlertType:
187187
"""Alert types for TLSContentType.ALERT messages
188188
189-
See RFC 8466, section B.2
189+
See RFC 8446, section B.2
190190
"""
191191
CLOSE_NOTIFY = 0
192192
UNEXPECTED_MESSAGE = 10

Lib/test/test_ssl.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5359,7 +5359,7 @@ def test_tlsalerttype(self):
53595359
class Checked_TLSAlertType(enum.IntEnum):
53605360
"""Alert types for TLSContentType.ALERT messages
53615361
5362-
See RFC 8466, section B.2
5362+
See RFC 8446, section B.2
53635363
"""
53645364
CLOSE_NOTIFY = 0
53655365
UNEXPECTED_MESSAGE = 10

0 commit comments

Comments
 (0)