Made handle_expt_event() be called last, so that we don't accidentally read

after closing the socket.
This commit is contained in:
Josiah Carlson 2009-03-31 21:49:36 +00:00
parent bcd64a3fc7
commit aba27dd6d9
1 changed files with 2 additions and 2 deletions

View File

@ -97,14 +97,14 @@ def _exception(obj):
def readwrite(obj, flags):
try:
if flags & select.POLLPRI:
obj.handle_expt_event()
if flags & select.POLLIN:
obj.handle_read_event()
if flags & select.POLLOUT:
obj.handle_write_event()
if flags & (select.POLLHUP | select.POLLERR | select.POLLNVAL):
obj.handle_close()
if flags & select.POLLPRI:
obj.handle_expt_event()
except _reraised_exceptions:
raise
except: