Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Grammar fix to socket error string (GH-93523)
(cherry picked from commit 890c3be)

Co-authored-by: Evorage <owner@evorage.com>
  • Loading branch information
Evorage authored and miss-islington committed Jun 7, 2022
commit f1c4b56b0e4318bd2c5fb63d0cfb39556645ccbf
2 changes: 1 addition & 1 deletion Lib/socket.py
Original file line number Diff line number Diff line change
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