]> granicus.if.org Git - python/commitdiff
Add missing FeedParser and BytesFeedParser to email.parser.__all__.
authorR David Murray <rdmurray@bitdance.com>
Sat, 16 Mar 2013 01:00:48 +0000 (21:00 -0400)
committerR David Murray <rdmurray@bitdance.com>
Sat, 16 Mar 2013 01:00:48 +0000 (21:00 -0400)
Lib/email/parser.py
Misc/NEWS

index 752bf35a6e11e57b0abf0f7ad4a37a6fb096f2e6..f49d31d43dfc531a4b276044c6dd9739efe9e24b 100644 (file)
@@ -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
index 4cc52a09ed9c09623fe648331cacbb2e6e95d7e4..a1b25d89a83d62eae32bef4bee307d2e30d93710 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -280,6 +280,8 @@ Core and Builtins
 Library
 -------
 
+- Added missing FeedParser and BytesFeedParser to email.parser.__all__.
+
 - Issue #17431: Fix missing import of BytesFeedParser in email.parser.
 
 - Issue #12921: http.server's send_error takes an explain argument to send more