Skip to content

Commit

Permalink
Grammar fix to socket error string (GH-93523) (GH-93560)
Browse files Browse the repository at this point in the history
(cherry picked from commit 890c3be)

Co-authored-by: Evorage <owner@evorage.com>
  • Loading branch information
miss-islington and Evorage committed Jun 7, 2022
1 parent e139dee commit 008bcde
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Lib/socket.py
Expand Up @@ -122,7 +122,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 008bcde

Please sign in to comment.