Jean Brouwers <[email protected]> added the comment:
Indeed, the unmodified test_asynchat.py now passes in Python 3.1b1. The
readwrite function in asyncore looks like this now:
def readwrite(obj, flags):
try:
if flags & (select.POLLHUP | select.POLLERR | select.POLLNVAL):
obj.handle_close()
else:
if flags & select.POLLIN:
obj.handle_read_event()
if flags & select.POLLOUT: # and obj.connected:
obj.handle_write_event()
if flags & select.POLLPRI: # and obj.connected:
obj.handle_expt_event()
except _reraised_exceptions:
raise
except:
obj.handle_error()
----------
_______________________________________
Python tracker <[email protected]>
<http://bugs.python.org/issue5798>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe:
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com