From c81275fda4767a036ddc09cacb82e2540b75b6c5 Mon Sep 17 00:00:00 2001 From: Eric Snow Date: Tue, 10 Apr 2018 23:08:17 +0000 Subject: [PATCH] Add a TODO. --- tests/helpers/_io.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/helpers/_io.py b/tests/helpers/_io.py index 636b5d97..44211391 100644 --- a/tests/helpers/_io.py +++ b/tests/helpers/_io.py @@ -62,6 +62,7 @@ def iter_lines_buffered(read, sep=b'\n', initial=b'', stop=noop): try: if stop(): raise EOFError() + # TODO: handle ConnectionResetError (errno 104) data = read(1024) if not data: raise EOFError()