Skip to content

Commit 61823a5

Browse files
authored
Docs: fix RFC index reference for TLS 1.3 (#142262)
1 parent d119443 commit 61823a5

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
@@ -185,7 +185,7 @@ class _TLSContentType:
185185
class _TLSAlertType:
186186
"""Alert types for TLSContentType.ALERT messages
187187
188-
See RFC 8466, section B.2
188+
See RFC 8446, section B.2
189189
"""
190190
CLOSE_NOTIFY = 0
191191
UNEXPECTED_MESSAGE = 10

Lib/test/test_ssl.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5613,7 +5613,7 @@ def test_tlsalerttype(self):
56135613
class Checked_TLSAlertType(enum.IntEnum):
56145614
"""Alert types for TLSContentType.ALERT messages
56155615
5616-
See RFC 8466, section B.2
5616+
See RFC 8446, section B.2
56175617
"""
56185618
CLOSE_NOTIFY = 0
56195619
UNEXPECTED_MESSAGE = 10

0 commit comments

Comments
 (0)