diff options
author | R David Murray <rdmurray@bitdance.com> | 2012-03-17 02:43:05 (GMT) |
---|---|---|
committer | R David Murray <rdmurray@bitdance.com> | 2012-03-17 02:43:05 (GMT) |
commit | 1b6c724df01614b446b748c505214afd658e75fe (patch) | |
tree | a39b0df210fb21cdaa02beb7bfd61b97373b056b /Lib/email/generator.py | |
parent | 41914349adbee033ba48d6c52dc26a7d36cd78fa (diff) | |
download | cpython-1b6c724df01614b446b748c505214afd658e75fe.zip cpython-1b6c724df01614b446b748c505214afd658e75fe.tar.gz cpython-1b6c724df01614b446b748c505214afd658e75fe.tar.bz2 |
#11686: add missing entries to email __all__ lists.
Original patch by Steffen Daode Nurpmeso
Diffstat (limited to 'Lib/email/generator.py')
-rw-r--r-- | Lib/email/generator.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/email/generator.py b/Lib/email/generator.py index 430ee73..04c0210 100644 --- a/Lib/email/generator.py +++ b/Lib/email/generator.py @@ -4,7 +4,7 @@ """Classes to generate plain text from a message object tree.""" -__all__ = ['Generator', 'DecodedGenerator'] +__all__ = ['Generator', 'DecodedGenerator', 'BytesGenerator'] import re import sys |