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 flox
Recipients flox, orsenthil
Date 2013-05-19.17:45:08
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1368985509.82.0.0767956747913.issue18013@psf.upfronthosting.co.za>
In-reply-to
Content
Trying to parse the W3C sample, it fails in 3.3 (while it passes on 2.7).
http://www.w3.org/TR/html401/interact/forms.html#h-17.13.4 (last example)

   Content-Type: multipart/form-data; boundary=AaB03x

   --AaB03x
   Content-Disposition: form-data; name="submit-name"

   Larry
   --AaB03x
   Content-Disposition: form-data; name="files"
   Content-Type: multipart/mixed; boundary=BbC04y

   --BbC04y
   Content-Disposition: file; filename="file1.txt"
   Content-Type: text/plain

   ... contents of file1.txt ...
   --BbC04y
   Content-Disposition: file; filename="file2.gif"
   Content-Type: image/gif
   Content-Transfer-Encoding: binary

   ...contents of file2.gif...
   --BbC04y--
   --AaB03x--

(broken) test attached.
History
Date User Action Args
2013-05-19 17:45:09floxsetrecipients: + flox, orsenthil
2013-05-19 17:45:09floxsetmessageid: <1368985509.82.0.0767956747913.issue18013@psf.upfronthosting.co.za>
2013-05-19 17:45:09floxlinkissue18013 messages
2013-05-19 17:45:09floxcreate