Nadeem Vawda added the comment:

Thanks for pointing that out; I've uploaded a second patch that changes
 async_chat.__init__() to use 'sock' instead of 'conn'.

This change shouldn't affect anything either, since the argument is
simply passed to asyncore.dispatcher.__init__().

Added file: http://bugs.python.org/file8834/asynchat.2.patch

__________________________________
Tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/issue1519>
__________________________________
Index: Lib/asynchat.py
===================================================================
--- Lib/asynchat.py	(revision 59215)
+++ Lib/asynchat.py	(working copy)
@@ -59,11 +59,11 @@
     ac_in_buffer_size       = 4096
     ac_out_buffer_size      = 4096
 
-    def __init__ (self, conn=None):
+    def __init__ (self, sock=None, map=None):
         self.ac_in_buffer = ''
         self.ac_out_buffer = ''
         self.producer_fifo = fifo()
-        asyncore.dispatcher.__init__ (self, conn)
+        asyncore.dispatcher.__init__ (self, sock, map)
 
     def collect_incoming_data(self, data):
         raise NotImplementedError, "must be implemented in subclass"
_______________________________________________
Python-bugs-list mailing list 
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to