[Python-checkins] r66281 - python/trunk/Lib/asyncore.py

josiah.carlson python-checkins at python.org
Sun Sep 7 05:53:59 CEST 2008


Author: josiah.carlson
Date: Sun Sep  7 05:53:58 2008
New Revision: 66281

Log:
This fixes a small inconsistency between trunk and 3.0, closing bug 3764.



Modified:
   python/trunk/Lib/asyncore.py

Modified: python/trunk/Lib/asyncore.py
==============================================================================
--- python/trunk/Lib/asyncore.py	(original)
+++ python/trunk/Lib/asyncore.py	Sun Sep  7 05:53:58 2008
@@ -102,7 +102,7 @@
         if flags & (select.POLLERR | select.POLLNVAL):
             obj.handle_expt_event()
         if flags & select.POLLHUP:
-            obj.handle_close()
+            obj.handle_close_event()
     except (ExitNow, KeyboardInterrupt, SystemExit):
         raise
     except:


More information about the Python-checkins mailing list