Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
2fab3587
Commit
2fab3587
authored
Mar 15, 2013
by
R David Murray
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add missing FeedParser and BytesFeedParser to email.parser.__all__.
parent
5efee580
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
1 deletion
+4
-1
Lib/email/parser.py
Lib/email/parser.py
+2
-1
Misc/NEWS
Misc/NEWS
+2
-0
No files found.
Lib/email/parser.py
View file @
2fab3587
...
...
@@ -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
...
...
Misc/NEWS
View file @
2fab3587
...
...
@@ -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
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment