Skip to content

Commit 890c3be

Browse files
author
Evorage
authored
Grammar fix to socket error string (pythonGH-93523)
1 parent 7403933 commit 890c3be

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Lib/socket.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ def _intenum_converter(value, enum_klass):
123123
errorTab[10014] = "A fault occurred on the network??" # WSAEFAULT
124124
errorTab[10022] = "An invalid operation was attempted."
125125
errorTab[10024] = "Too many open files."
126-
errorTab[10035] = "The socket operation would block"
126+
errorTab[10035] = "The socket operation would block."
127127
errorTab[10036] = "A blocking operation is already in progress."
128128
errorTab[10037] = "Operation already in progress."
129129
errorTab[10038] = "Socket operation on nonsocket."

0 commit comments

Comments
 (0)