diff options
author | Hynek Schlawack <hs@ox.cx> | 2012-05-21 09:01:54 (GMT) |
---|---|---|
committer | Hynek Schlawack <hs@ox.cx> | 2012-05-21 09:01:54 (GMT) |
commit | dfa465243c94b540099c413eb79b2774b40bb82e (patch) | |
tree | 3b67d5600dc9fa2be8843c024259336d73e69b1e /Doc/library/email.generator.rst | |
parent | f54c0604c852c2bf0b4d522cea7d94f205a795e8 (diff) | |
download | cpython-dfa465243c94b540099c413eb79b2774b40bb82e.zip cpython-dfa465243c94b540099c413eb79b2774b40bb82e.tar.gz cpython-dfa465243c94b540099c413eb79b2774b40bb82e.tar.bz2 |
#14804: Remove [] around optional arguments with default values
Diffstat (limited to 'Doc/library/email.generator.rst')
-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 f40869c..3be04a2 100644 --- a/Doc/library/email.generator.rst +++ b/Doc/library/email.generator.rst @@ -178,7 +178,7 @@ except that non-\ :mimetype:`text` parts are substituted with a format string representing the part. -.. class:: DecodedGenerator(outfp[, mangle_from_=True, maxheaderlen=78, fmt=None) +.. class:: DecodedGenerator(outfp, mangle_from_=True, maxheaderlen=78, fmt=None) This class, derived from :class:`Generator` walks through all the subparts of a message. If the subpart is of main type :mimetype:`text`, then it prints the |