mirror of
https://github.com/python/cpython.git
synced 2025-11-25 21:11:09 +00:00
Made handle_expt_event() be called last, so that we don't accidentally read
after closing the socket.
This commit is contained in:
parent
bcd64a3fc7
commit
aba27dd6d9
1 changed files with 2 additions and 2 deletions
|
|
@ -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:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue