[Python-checkins] python/dist/src/Doc/lib libasyncore.tex, 1.17, 1.18

akuchling@users.sourceforge.net akuchling at users.sourceforge.net
Wed Jun 1 17:39:59 CEST 2005


Update of /cvsroot/python/python/dist/src/Doc/lib
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1844

Modified Files:
	libasyncore.tex 
Log Message:
[Bug #1181939] Remove incorrect text about __init__; move map discussion into a separate paragraph

Index: libasyncore.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/libasyncore.tex,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -d -r1.17 -r1.18
--- libasyncore.tex	30 Jun 2004 09:02:33 -0000	1.17
+++ libasyncore.tex	1 Jun 2005 15:39:57 -0000	1.18
@@ -53,12 +53,11 @@
   \function{poll()} call, measured in seconds; the default is 30 seconds.
   The \var{use_poll} parameter, if true, indicates that \function{poll()}
   should be used in preference to \function{select()} (the default is
-  \code{False}).  The \var{map} parameter is a dictionary whose items are
-  the channels to watch.  As channels are closed they are deleted from their
-  map.  If \var{map} is omitted, a global map is used (this map is updated
-  by the default class \method{__init__()} -- make sure you extend, rather
-  than override, \method{__init__()} if you want to retain this behavior).
+  \code{False}).  
 
+  The \var{map} parameter is a dictionary whose items are
+  the channels to watch.  As channels are closed they are deleted from their
+  map.  If \var{map} is omitted, a global map is used.
   Channels (instances of \class{asyncore.dispatcher}, \class{asynchat.async_chat}
   and subclasses thereof) can freely be mixed in the map.
 \end{funcdesc}



More information about the Python-checkins mailing list