Skip to content

Commit

Permalink
Grammar fix to socket error string (GH-93523)
Browse files Browse the repository at this point in the history
  • Loading branch information
Evorage committed Jun 7, 2022
1 parent 7403933 commit 890c3be
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Lib/socket.py
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ def _intenum_converter(value, enum_klass):
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."
Expand Down

0 comments on commit 890c3be

Please sign in to comment.