diff options
author | R. David Murray <rdmurray@bitdance.com> | 2010-10-19 23:05:35 (GMT) |
---|---|---|
committer | R. David Murray <rdmurray@bitdance.com> | 2010-10-19 23:05:35 (GMT) |
commit | f19076e592c0ba80aa7cd9b40bbf5e5d7727dee2 (patch) | |
tree | 5e1125b45799d23bbca135649b090fb46f2d504c /Doc | |
parent | fc082cafa6076ab3ef06638643d93a6313f36e72 (diff) | |
download | cpython-f19076e592c0ba80aa7cd9b40bbf5e5d7727dee2.zip cpython-f19076e592c0ba80aa7cd9b40bbf5e5d7727dee2.tar.gz cpython-f19076e592c0ba80aa7cd9b40bbf5e5d7727dee2.tar.bz2 |
Correct signature of BytesGenerator in docs.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/email.generator.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/email.generator.rst b/Doc/library/email.generator.rst index 002f36f..2c169b9 100644 --- a/Doc/library/email.generator.rst +++ b/Doc/library/email.generator.rst @@ -95,7 +95,7 @@ As a convenience, see the :class:`~email.message.Message` methods formatted string representation of a message object. For more detail, see :mod:`email.message`. -.. class:: BytesGenerator(outfp, mangle_from_=True, maxheaderlen=78, fmt=None) +.. class:: BytesGenerator(outfp, mangle_from_=True, maxheaderlen=78) This class has the same API as the :class:`Generator` class, except that *outfp* must be a file like object that will accept :class`bytes` input to |