[Python-checkins] r85734 - python/branches/py3k/Doc/library/email.generator.rst
r.david.murray
python-checkins at python.org
Wed Oct 20 01:05:35 CEST 2010
Author: r.david.murray
Date: Wed Oct 20 01:05:35 2010
New Revision: 85734
Log:
Correct signature of BytesGenerator in docs.
Modified:
python/branches/py3k/Doc/library/email.generator.rst
Modified: python/branches/py3k/Doc/library/email.generator.rst
==============================================================================
--- python/branches/py3k/Doc/library/email.generator.rst (original)
+++ python/branches/py3k/Doc/library/email.generator.rst Wed Oct 20 01:05:35 2010
@@ -95,7 +95,7 @@
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
More information about the Python-checkins
mailing list