You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Lib/test/test_ssl.py
+8-3Lines changed: 8 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -2443,9 +2443,14 @@ def wrap_conn(self):
2443
2443
self.server.conn_errors.append(str(e))
2444
2444
ifself.server.chatty:
2445
2445
handle_error("\n server: bad connection attempt from "+repr(self.addr) +":\n")
2446
-
self.running=False
2447
-
self.server.stop()
2448
-
self.close()
2446
+
2447
+
# bpo-44229, bpo-43855, bpo-44237, and bpo-33450:
2448
+
# Ignore spurious EPROTOTYPE returned by write() on macOS.
2449
+
# See also http://erickt.github.io/blog/2014/11/19/adventures-in-debugging-a-potential-osx-kernel-bug/
0 commit comments