diff options
author | Neal Norwitz <nnorwitz@gmail.com> | 2002-04-05 02:21:09 (GMT) |
---|---|---|
committer | Neal Norwitz <nnorwitz@gmail.com> | 2002-04-05 02:21:09 (GMT) |
commit | d3dab2b19288139dfa6fc7c4f3302b734573f9dd (patch) | |
tree | 539ad29bdea7cefa53f5b0cd844005a9ec264687 /Doc/lib/libasyncore.tex | |
parent | c334df5727ad9cb4a5de85f69b03808b9856b55c (diff) | |
download | cpython-d3dab2b19288139dfa6fc7c4f3302b734573f9dd.zip cpython-d3dab2b19288139dfa6fc7c4f3302b734573f9dd.tar.gz cpython-d3dab2b19288139dfa6fc7c4f3302b734573f9dd.tar.bz2 |
Update doc to reflect Tim's changes to bool.
Diffstat (limited to 'Doc/lib/libasyncore.tex')
-rw-r--r-- | Doc/lib/libasyncore.tex | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/lib/libasyncore.tex b/Doc/lib/libasyncore.tex index cae972d..a85998e 100644 --- a/Doc/lib/libasyncore.tex +++ b/Doc/lib/libasyncore.tex @@ -118,14 +118,14 @@ def handle_write(self): \begin{methoddesc}{readable}{} Each time through the \method{select()} loop, the set of sockets is scanned, and this method is called to see if there is any - interest in reading. The default method simply returns \code{1}, + interest in reading. The default method simply returns \code{True}, indicating that by default, all channels will be interested. \end{methoddesc} \begin{methoddesc}{writable}{} Each time through the \method{select()} loop, the set of sockets is scanned, and this method is called to see if there is any - interest in writing. The default method simply returns \code{1}, + interest in writing. The default method simply returns \code{True}, indicating that by default, all channels will be interested. \end{methoddesc} |