summaryrefslogtreecommitdiffstats
path: root/Doc/lib/libasyncore.tex
diff options
context:
space:
mode:
authorAndrew M. Kuchling <amk@amk.ca>2005-06-01 15:39:57 (GMT)
committerAndrew M. Kuchling <amk@amk.ca>2005-06-01 15:39:57 (GMT)
commit1a5152d94b73bda7b0e888a8ef312960b1f1496b (patch)
tree23ae91c4a9cb6d5b9701c460fea8c8fe1a67e780 /Doc/lib/libasyncore.tex
parent597bd60ef1b2e25048d4303e643ea359bb373243 (diff)
downloadcpython-1a5152d94b73bda7b0e888a8ef312960b1f1496b.zip
cpython-1a5152d94b73bda7b0e888a8ef312960b1f1496b.tar.gz
cpython-1a5152d94b73bda7b0e888a8ef312960b1f1496b.tar.bz2
[Bug #1181939] Remove incorrect text about __init__; move map discussion into a separate paragraph
Diffstat (limited to 'Doc/lib/libasyncore.tex')
-rw-r--r--Doc/lib/libasyncore.tex9
1 files changed, 4 insertions, 5 deletions
diff --git a/Doc/lib/libasyncore.tex b/Doc/lib/libasyncore.tex
index ee50d18..65de1e4 100644
--- a/Doc/lib/libasyncore.tex
+++ b/Doc/lib/libasyncore.tex
@@ -53,12 +53,11 @@ service) is closed.
\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}