From: Josiah Carlson Date: Sun, 7 Sep 2008 04:37:10 +0000 (+0000) Subject: undoing change that broke trunk. Need to find a better solution to this. X-Git-Tag: v2.6rc1~35 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=b7a841ca40609dfc935555716de0471cff7ec03f;p=thirdparty%2FPython%2Fcpython.git undoing change that broke trunk. Need to find a better solution to this. --- diff --git a/Lib/asyncore.py b/Lib/asyncore.py index 34e719a5685b..9cd496161360 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: