Fix for AttributeError in test_asynchat.
This commit is contained in:
parent
064e4a6c4d
commit
c31bc9a498
|
@ -101,7 +101,7 @@ def readwrite(obj, flags):
|
||||||
if flags & (select.POLLERR | select.POLLNVAL):
|
if flags & (select.POLLERR | select.POLLNVAL):
|
||||||
obj.handle_expt_event()
|
obj.handle_expt_event()
|
||||||
if flags & select.POLLHUP:
|
if flags & select.POLLHUP:
|
||||||
obj.handle_close_event()
|
obj.handle_close()
|
||||||
except (ExitNow, KeyboardInterrupt, SystemExit):
|
except (ExitNow, KeyboardInterrupt, SystemExit):
|
||||||
raise
|
raise
|
||||||
except:
|
except:
|
||||||
|
|
Loading…
Reference in New Issue