diff options
author | Benjamin Peterson <benjamin@python.org> | 2008-04-25 01:59:09 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2008-04-25 01:59:09 (GMT) |
commit | e41251e864e94885d785b5a9bf8f824753316296 (patch) | |
tree | f530db7682d71f4920b22b8d7f84c89727647ab5 /Doc/library/asynchat.rst | |
parent | 768db92b438038586c1580b711c528363a97d3f4 (diff) | |
download | cpython-e41251e864e94885d785b5a9bf8f824753316296.zip cpython-e41251e864e94885d785b5a9bf8f824753316296.tar.gz cpython-e41251e864e94885d785b5a9bf8f824753316296.tar.bz2 |
Merged revisions 62490 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r62490 | benjamin.peterson | 2008-04-24 20:29:10 -0500 (Thu, 24 Apr 2008) | 2 lines
reformat some documentation of classes so methods and attributes are under the class directive
........
Diffstat (limited to 'Doc/library/asynchat.rst')
-rw-r--r-- | Doc/library/asynchat.rst | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/Doc/library/asynchat.rst b/Doc/library/asynchat.rst index 8e9437d..6f15441 100644 --- a/Doc/library/asynchat.rst +++ b/Doc/library/asynchat.rst @@ -197,10 +197,10 @@ asynchat - Auxiliary Classes and Functions the data no larger than *buffer_size*. -.. method:: simple_producer.more() + .. method:: more() - Produces the next chunk of information from the producer, or returns the - empty string. + Produces the next chunk of information from the producer, or returns the + empty string. .. class:: fifo([list=None]) @@ -212,26 +212,26 @@ asynchat - Auxiliary Classes and Functions producers or data items to be written to the channel. -.. method:: fifo.is_empty() + .. method:: is_empty() - Returns ``True`` if and only if the fifo is empty. + Returns ``True`` if and only if the fifo is empty. -.. method:: fifo.first() + .. method:: first() - Returns the least-recently :meth:`push`\ ed item from the fifo. + Returns the least-recently :meth:`push`\ ed item from the fifo. -.. method:: fifo.push(data) + .. method:: push(data) - Adds the given data (which may be a string or a producer object) to the - producer fifo. + Adds the given data (which may be a string or a producer object) to the + producer fifo. -.. method:: fifo.pop() + .. method:: pop() - If the fifo is not empty, returns ``True, first()``, deleting the popped - item. Returns ``False, None`` for an empty fifo. + If the fifo is not empty, returns ``True, first()``, deleting the popped + item. Returns ``False, None`` for an empty fifo. The :mod:`asynchat` module also defines one utility function, which may be of use in network and textual analysis operations. |