diff options
author | R David Murray <rdmurray@bitdance.com> | 2012-03-16 22:43:05 -0400 |
---|---|---|
committer | R David Murray <rdmurray@bitdance.com> | 2012-03-16 22:43:05 -0400 |
commit | 1b6c724df01614b446b748c505214afd658e75fe (patch) | |
tree | a39b0df210fb21cdaa02beb7bfd61b97373b056b /Lib/email/parser.py | |
parent | 41914349adbee033ba48d6c52dc26a7d36cd78fa (diff) | |
download | cpython-git-1b6c724df01614b446b748c505214afd658e75fe.tar.gz |
#11686: add missing entries to email __all__ lists.
Original patch by Steffen Daode Nurpmeso
Diffstat (limited to 'Lib/email/parser.py')
-rw-r--r-- | Lib/email/parser.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/email/parser.py b/Lib/email/parser.py index 6caaff53ad..1c931ea9de 100644 --- a/Lib/email/parser.py +++ b/Lib/email/parser.py @@ -4,7 +4,7 @@ """A parser of RFC 2822 and MIME email messages.""" -__all__ = ['Parser', 'HeaderParser'] +__all__ = ['Parser', 'HeaderParser', 'BytesParser'] import warnings from io import StringIO, TextIOWrapper |