diff options
author | Georg Brandl <georg@python.org> | 2009-04-02 02:56:10 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2009-04-02 02:56:10 (GMT) |
commit | b868a66ccb9cde89d934a896fe3c5629ed007d42 (patch) | |
tree | 93830f2ea5ec9dfe170e2d3139429933917ce7ed /Doc/library/asynchat.rst | |
parent | acc9dcc6888d310ec084925d84441779cce0d03d (diff) | |
download | cpython-b868a66ccb9cde89d934a896fe3c5629ed007d42.zip cpython-b868a66ccb9cde89d934a896fe3c5629ed007d42.tar.gz cpython-b868a66ccb9cde89d934a896fe3c5629ed007d42.tar.bz2 |
First batch of signature documentation changes; using default argument syntax where applicable.
Diffstat (limited to 'Doc/library/asynchat.rst')
-rw-r--r-- | Doc/library/asynchat.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/asynchat.rst b/Doc/library/asynchat.rst index d4894ea..4adaecf 100644 --- a/Doc/library/asynchat.rst +++ b/Doc/library/asynchat.rst @@ -202,7 +202,7 @@ asynchat - Auxiliary Classes and Functions ------------------------------------------ -.. class:: simple_producer(data[, buffer_size=512]) +.. class:: simple_producer(data, buffer_size=512) A :class:`simple_producer` takes a chunk of data and an optional buffer size. Repeated calls to its :meth:`more` method yield successive chunks of @@ -215,7 +215,7 @@ asynchat - Auxiliary Classes and Functions empty string. -.. class:: fifo([list=None]) +.. class:: fifo(list=None) Each channel maintains a :class:`fifo` holding data which has been pushed by the application but not yet popped for writing to the channel. A |