summaryrefslogtreecommitdiffstats
path: root/Lib/socket.py
diff options
context:
space:
mode:
authorEvorage <owner@evorage.com>2022-06-07 07:43:16 (GMT)
committerGitHub <noreply@github.com>2022-06-07 07:43:16 (GMT)
commit890c3be8fb10bc329de06fa9d3b18dd8d90aa8b5 (patch)
treebefb5dfa99d954052a6a3d46c5d4893046106332 /Lib/socket.py
parent74039330f29461ac06297b6e55c91c89e649c990 (diff)
downloadcpython-890c3be8fb10bc329de06fa9d3b18dd8d90aa8b5.zip
cpython-890c3be8fb10bc329de06fa9d3b18dd8d90aa8b5.tar.gz
cpython-890c3be8fb10bc329de06fa9d3b18dd8d90aa8b5.tar.bz2
Grammar fix to socket error string (GH-93523)
Diffstat (limited to 'Lib/socket.py')
-rw-r--r--Lib/socket.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/socket.py b/Lib/socket.py
index bfca763..0ed86af 100644
--- a/Lib/socket.py
+++ b/Lib/socket.py
@@ -123,7 +123,7 @@ if sys.platform.lower().startswith("win"):
errorTab[10014] = "A fault occurred on the network??" # WSAEFAULT
errorTab[10022] = "An invalid operation was attempted."
errorTab[10024] = "Too many open files."
- errorTab[10035] = "The socket operation would block"
+ errorTab[10035] = "The socket operation would block."
errorTab[10036] = "A blocking operation is already in progress."
errorTab[10037] = "Operation already in progress."
errorTab[10038] = "Socket operation on nonsocket."