summaryrefslogtreecommitdiffstats
path: root/Lib/asyncore.py
diff options
context:
space:
mode:
authorJosiah Carlson <josiah.carlson@gmail.com>2008-09-07 04:37:10 (GMT)
committerJosiah Carlson <josiah.carlson@gmail.com>2008-09-07 04:37:10 (GMT)
commitb7a841ca40609dfc935555716de0471cff7ec03f (patch)
treec3533b19442ed4149683b6b5dd56ad8bf5d9cab2 /Lib/asyncore.py
parent1680b8c16cacb043df85f312074b684b810f8afe (diff)
downloadcpython-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.py2
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: