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.

Author sandro.tosi
Recipients barry, jkg, pitrou, sandro.tosi, terry.reedy, tony_nelson
Date 2011-02-02.19:56:39
SpamBayes Score 3.2770552e-07
Marked as misclassified No
Message-id <1296676600.36.0.416871696439.issue6465@psf.upfronthosting.co.za>
In-reply-to
Content
I was looking at this bug and tried to reproduce it, but I can't :( I extracted this code:


part1 = 'Content-Type: multipart/related; start=<op.mhtml.1247227666422.e6e72d4c344a2503@192.168.1.20>; boundary=----------1JBOHhxKNnWgkmE17ZJ2Cy\r\nContent-Location: http://localhost/page1.html\r\nSubject: =?utf-8?Q?test?=\r\nMIME-Version: 1.0\r\n\r\n------------1JBOHhxKNnWgkmE17ZJ2Cy\r'
part2 = '\nContent-Disposition: inline; filename=page1.html\r\nContent-Type: text/html; charset=UTF-8; name=page1.html\r\nContent-Id: <op.mhtml.1247227666422.e6e72d4c344a2503@192.168.1.20>\r\nContent-Location: http://localhost/page1.html\r\nContent-Transfer-Encoding: 8bit\r\n\r\n<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">\r\n<html><head><title>Page 1</title></head><body><p>page 1</p></body></html>\r\n------------1JBOHhxKNnWgkmE17ZJ2Cy--\r\n'
expected = '<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">\r\n<html><head><title>Page 1</title></head><body><p>page 1</p></body></html>'
from email.feedparser import FeedParser
feedparser = FeedParser()
feedparser.feed(part1)
feedparser.feed(part2)
m = feedparser.close()
mm = m.get_payload()
mm[0].get_payload() == expected

from the test attached to this bug, and tried on:

* py3k
* release3.1-maint
* release2.7-maint
* debian 2.6.6

(the first 3 recompiled just before the test) and in all of the cases the last instruction returns True, so I'm actually quite skeptical this is still a bug, or there something I'm missing.

I'm not closing this bug yet, since I'd like to hear first from the people involved back then.
History
Date User Action Args
2011-02-02 19:56:40sandro.tosisetrecipients: + sandro.tosi, barry, terry.reedy, pitrou, tony_nelson, jkg
2011-02-02 19:56:40sandro.tosisetmessageid: <1296676600.36.0.416871696439.issue6465@psf.upfronthosting.co.za>
2011-02-02 19:56:39sandro.tosilinkissue6465 messages
2011-02-02 19:56:39sandro.tosicreate