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

josiah.carlson python-checkins at python.org
Sat Jul 12 00:17:14 CEST 2008


Author: josiah.carlson
Date: Sat Jul 12 00:17:14 2008
New Revision: 64882

Log:
Fix for the AttributeError in test_asynchat.


Modified:
   python/trunk/Lib/asyncore.py

Modified: python/trunk/Lib/asyncore.py
==============================================================================
--- python/trunk/Lib/asyncore.py	(original)
+++ python/trunk/Lib/asyncore.py	Sat Jul 12 00:17:14 2008
@@ -102,7 +102,7 @@
         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:


More information about the Python-checkins mailing list