diff options
author | Josiah Carlson <josiah.carlson@gmail.com> | 2008-09-07 04:37:10 (GMT) |
---|---|---|
committer | Josiah Carlson <josiah.carlson@gmail.com> | 2008-09-07 04:37:10 (GMT) |
commit | b7a841ca40609dfc935555716de0471cff7ec03f (patch) | |
tree | c3533b19442ed4149683b6b5dd56ad8bf5d9cab2 /Lib/asyncore.py | |
parent | 1680b8c16cacb043df85f312074b684b810f8afe (diff) | |
download | cpython-b7a841ca40609dfc935555716de0471cff7ec03f.zip cpython-b7a841ca40609dfc935555716de0471cff7ec03f.tar.gz cpython-b7a841ca40609dfc935555716de0471cff7ec03f.tar.bz2 |
undoing change that broke trunk. Need to find a better solution to this.
Diffstat (limited to 'Lib/asyncore.py')
-rw-r--r-- | Lib/asyncore.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/asyncore.py b/Lib/asyncore.py index 34e719a..9cd4961 100644 --- a/Lib/asyncore.py +++ b/Lib/asyncore.py @@ -102,7 +102,7 @@ def readwrite(obj, flags): if flags & (select.POLLERR | select.POLLNVAL): obj.handle_expt_event() if flags & select.POLLHUP: - obj.handle_close_event() + obj.handle_close() except (ExitNow, KeyboardInterrupt, SystemExit): raise except: |