Kaydet (Commit) 1680b8c1 authored tarafından Josiah Carlson's avatar Josiah Carlson

This fixes a small inconsistency between trunk and 3.0, closing bug 3764.

üst a853a89d
...@@ -102,7 +102,7 @@ def readwrite(obj, flags): ...@@ -102,7 +102,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() obj.handle_close_event()
except (ExitNow, KeyboardInterrupt, SystemExit): except (ExitNow, KeyboardInterrupt, SystemExit):
raise raise
except: except:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment