diff options
author | Giampaolo Rodola' <g.rodola@gmail.com> | 2014-06-14 15:03:42 (GMT) |
---|---|---|
committer | Giampaolo Rodola' <g.rodola@gmail.com> | 2014-06-14 15:03:42 (GMT) |
commit | 892051af95729098ce4f5fc7f17ca7049c100b14 (patch) | |
tree | febd6a075ccd067575b983764d581f4ab080e5bf /Doc/library/asynchat.rst | |
parent | f8e9ba0fb92e2945df9ba151523982bc53f00b85 (diff) | |
download | cpython-892051af95729098ce4f5fc7f17ca7049c100b14.zip cpython-892051af95729098ce4f5fc7f17ca7049c100b14.tar.gz cpython-892051af95729098ce4f5fc7f17ca7049c100b14.tar.bz2 |
fix issue #6916: undocument deprecated asynchat.fifo class.q
Diffstat (limited to 'Doc/library/asynchat.rst')
-rw-r--r-- | Doc/library/asynchat.rst | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/Doc/library/asynchat.rst b/Doc/library/asynchat.rst index c6fa061..794da8c 100644 --- a/Doc/library/asynchat.rst +++ b/Doc/library/asynchat.rst @@ -147,40 +147,6 @@ connection requests. by the channel after :meth:`found_terminator` is called. -asynchat - Auxiliary Classes ------------------------------------------- - -.. class:: fifo(list=None) - - A :class:`fifo` holding data which has been pushed by the application but - not yet popped for writing to the channel. A :class:`fifo` is a list used - to hold data and/or producers until they are required. If the *list* - argument is provided then it should contain producers or data items to be - written to the channel. - - - .. method:: is_empty() - - Returns ``True`` if and only if the fifo is empty. - - - .. method:: first() - - Returns the least-recently :meth:`push`\ ed item from the fifo. - - - .. method:: push(data) - - Adds the given data (which may be a string or a producer object) to the - producer fifo. - - - .. method:: pop() - - If the fifo is not empty, returns ``True, first()``, deleting the popped - item. Returns ``False, None`` for an empty fifo. - - .. _asynchat-example: asynchat Example |