diff options
author | R David Murray <rdmurray@bitdance.com> | 2013-03-16 01:00:48 (GMT) |
---|---|---|
committer | R David Murray <rdmurray@bitdance.com> | 2013-03-16 01:00:48 (GMT) |
commit | 2fab35877d3c67057d02dac2cac374222c6ca079 (patch) | |
tree | 3eb1967eaf2652edc3974c53954f5a495d3d6841 /Lib/email/parser.py | |
parent | 5efee58014d43d9c7c66f43afece252716e530c1 (diff) | |
download | cpython-2fab35877d3c67057d02dac2cac374222c6ca079.zip cpython-2fab35877d3c67057d02dac2cac374222c6ca079.tar.gz cpython-2fab35877d3c67057d02dac2cac374222c6ca079.tar.bz2 |
Add missing FeedParser and BytesFeedParser to email.parser.__all__.
Diffstat (limited to 'Lib/email/parser.py')
-rw-r--r-- | Lib/email/parser.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Lib/email/parser.py b/Lib/email/parser.py index 752bf35..f49d31d 100644 --- a/Lib/email/parser.py +++ b/Lib/email/parser.py @@ -4,7 +4,8 @@ """A parser of RFC 2822 and MIME email messages.""" -__all__ = ['Parser', 'HeaderParser', 'BytesParser', 'BytesHeaderParser'] +__all__ = ['Parser', 'HeaderParser', 'BytesParser', 'BytesHeaderParser', + 'FeedParser', 'BytesFeedParser'] import warnings from io import StringIO, TextIOWrapper |