This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: email.parser module has no attribute BytesFeedParser
Type: behavior Stage: resolved
Components: email Versions: Python 3.2, Python 3.3, Python 3.4
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: barry, edmond.burnett, forest, python-dev, r.david.murray
Priority: normal Keywords: easy, patch

Created on 2013-03-15 18:46 by forest, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
issue17431_3.4.patch edmond.burnett, 2013-03-15 23:36 fix missing import in parser.py review
Messages (5)
msg184247 - (view) Author: Forest (forest) Date: 2013-03-15 18:46
The docs claim that email.parser.BytesFeedParser exists, but it doesn't.  Looks like email.feedparser.FeedParser is imported into the email.parser module, but someone forgot to do the same for BytesFeedParser.
msg184248 - (view) Author: R. David Murray (r.david.murray) * (Python committer) Date: 2013-03-15 19:11
Thanks for the report.
msg184274 - (view) Author: Edmond Burnett (edmond.burnett) * Date: 2013-03-15 22:44
Working on a patch for this.
msg184279 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2013-03-16 00:46
New changeset 4e6cf15e55c1 by R David Murray in branch '3.2':
#17431: Fix missing import of BytesFeedParser in email.parser.
http://hg.python.org/cpython/rev/4e6cf15e55c1

New changeset 45f6925906bf by R David Murray in branch '3.3':
Merge: #17431: Fix missing import of BytesFeedParser in email.parser.
http://hg.python.org/cpython/rev/45f6925906bf

New changeset b7c1ed5ce714 by R David Murray in branch 'default':
Merge: #17431: Fix missing import of BytesFeedParser in email.parser.
http://hg.python.org/cpython/rev/b7c1ed5ce714
msg184280 - (view) Author: R. David Murray (r.david.murray) * (Python committer) Date: 2013-03-16 00:54
Thanks, Edmond.
History
Date User Action Args
2022-04-11 14:57:42adminsetgithub: 61633
2013-03-16 00:54:56r.david.murraysetstatus: open -> closed
type: behavior
messages: + msg184280

resolution: fixed
stage: needs patch -> resolved
2013-03-16 00:46:55python-devsetnosy: + python-dev
messages: + msg184279
2013-03-15 23:36:09edmond.burnettsetfiles: + issue17431_3.4.patch
keywords: + patch
2013-03-15 22:44:07edmond.burnettsetnosy: + edmond.burnett
messages: + msg184274
2013-03-15 19:11:56r.david.murraysetkeywords: + easy

stage: needs patch
messages: + msg184248
versions: + Python 3.4
2013-03-15 18:46:04forestcreate