diff options
author | R. David Murray <rdmurray@bitdance.com> | 2010-10-19 23:05:35 +0000 |
---|---|---|
committer | R. David Murray <rdmurray@bitdance.com> | 2010-10-19 23:05:35 +0000 |
commit | f19076e592c0ba80aa7cd9b40bbf5e5d7727dee2 (patch) | |
tree | 5e1125b45799d23bbca135649b090fb46f2d504c | |
parent | fc082cafa6076ab3ef06638643d93a6313f36e72 (diff) | |
download | cpython-git-f19076e592c0ba80aa7cd9b40bbf5e5d7727dee2.tar.gz |
Correct signature of BytesGenerator in docs.
-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 002f36f39f..2c169b93e7 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 |