[Python-3000-checkins] r64883 - python/branches/py3k/Lib/asyncore.py

josiah.carlson python-3000-checkins at python.org
Sat Jul 12 00:18:27 CEST 2008


Author: josiah.carlson
Date: Sat Jul 12 00:18:27 2008
New Revision: 64883

Log:
Fix for AttributeError in test_asynchat.


Modified:
   python/branches/py3k/Lib/asyncore.py

Modified: python/branches/py3k/Lib/asyncore.py
==============================================================================
--- python/branches/py3k/Lib/asyncore.py	(original)
+++ python/branches/py3k/Lib/asyncore.py	Sat Jul 12 00:18:27 2008
@@ -101,7 +101,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-3000-checkins mailing list