Home
last modified time | relevance | path

Searched refs:async_chat (Results 1 – 8 of 8) sorted by relevance

/external/python/cpython2/Doc/library/
Dasynchat.rst16 :mod:`asynchat` defines the abstract class :class:`async_chat` that you
20 and :class:`asynchat.async_chat`, can freely be mixed in the channel map.
22 :class:`asynchat.async_chat` channel objects as it receives incoming
26 .. class:: async_chat()
29 practical use of the code you must subclass :class:`async_chat`, providing
35 Like :class:`asyncore.dispatcher`, :class:`async_chat` defines a set of
38 :class:`async_chat` object's methods are called by the event-processing
54 Unlike :class:`asyncore.dispatcher`, :class:`async_chat` allows you to
60 :class:`async_chat` object removes the producer from the fifo and starts
67 To build a functioning :class:`async_chat` subclass your input methods
[all …]
Dasyncore.rst41 :class:`asynchat.async_chat`. Creating the channels adds them to a global
64 :class:`asyncore.dispatcher`, :class:`asynchat.async_chat` and subclasses
241 :class:`asynchat.async_chat`.
/external/python/cpython2/Lib/test/
Dtest_poplib.py33 class DummyPOP3Handler(asynchat.async_chat):
36 asynchat.async_chat.__init__(self, conn)
63 asynchat.async_chat.push(self, data + '\r\n')
87 asynchat.async_chat.push(self, LIST_RESP)
93 asynchat.async_chat.push(self, RETR_RESP)
237 asynchat.async_chat.__init__(self, conn)
Dtest_asynchat.py66 class echo_client(asynchat.async_chat):
69 asynchat.async_chat.__init__(self)
254 class MyChat(asynchat.async_chat):
Dtest_ftplib.py31 class DummyDTPHandler(asynchat.async_chat):
35 asynchat.async_chat.__init__(self, conn)
55 class DummyFTPHandler(asynchat.async_chat):
60 asynchat.async_chat.__init__(self, conn)
97 asynchat.async_chat.push(self, data + '\r\n')
/external/python/cpython2/Lib/
Dsmtpd.py105 class SMTPChannel(asynchat.async_chat):
110 asynchat.async_chat.__init__(self, conn)
136 asynchat.async_chat.push(self, msg + '\r\n')
Dasynchat.py60 class async_chat (asyncore.dispatcher): class
/external/python/cpython2/Misc/
DNEWS1732 - Issue #16133: The asynchat.async_chat.handle_read() method now ignores