From b7a841ca40609dfc935555716de0471cff7ec03f Mon Sep 17 00:00:00 2001 From: Josiah Carlson Date: Sun, 7 Sep 2008 04:37:10 +0000 Subject: [PATCH] undoing change that broke trunk. Need to find a better solution to this. --- Lib/asyncore.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/asyncore.py b/Lib/asyncore.py index 34e719a5685..9cd49616136 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: