1
0

do not catch OSError in pipe.send (fix ANR on some versions of Android)

This commit is contained in:
ThomasV
2018-04-05 11:27:12 +02:00
parent de4fe9db69
commit ad6dd73a03
2 changed files with 2 additions and 6 deletions

View File

@@ -736,10 +736,6 @@ class SocketPipe:
print_error("SSLError:", e)
time.sleep(0.1)
continue
except OSError as e:
print_error("OSError", e)
time.sleep(0.1)
continue
class QueuePipe: