]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Grammar fix to socket error string (GH-93523)
authorEvorage <owner@evorage.com>
Tue, 7 Jun 2022 07:43:16 +0000 (08:43 +0100)
committerGitHub <noreply@github.com>
Tue, 7 Jun 2022 07:43:16 +0000 (09:43 +0200)
Lib/socket.py

index bfca763f72c82621ca4b9acb476b1dd7f39ce9fd..0ed86afb4a9ea5fae78330c8fa752ee6a32d559d 100644 (file)
@@ -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."