Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cc5f5b2 commit 7dd5f3cCopy full SHA for 7dd5f3c
1 file changed
Lib/asynchat.py
@@ -64,6 +64,12 @@ def __init__ (self, conn=None):
64
self.producer_fifo = fifo()
65
asyncore.dispatcher.__init__ (self, conn)
66
67
+ def collect_incoming_data(self, data):
68
+ raise NotImplementedError, "must be implemented in subclass"
69
+
70
+ def found_terminator(self):
71
72
73
def set_terminator (self, term):
74
"Set the input delimiter. Can be a fixed string of any length, an integer, or None"
75
self.terminator = term
0 commit comments