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 terry.reedy
Recipients bero, ezio.melotti, orsenthil, santoso.wijaya, terry.reedy
Date 2011-04-30.00:11:31
SpamBayes Score 2.0854968e-05
Marked as misclassified No
Message-id <1304122291.65.0.696701525838.issue11898@psf.upfronthosting.co.za>
In-reply-to
Content
Did you run the httplib test with your patch? Interactively
>>> from test.test_httplib import test_main as f; f()
(verbose mode, over 40 tests)

In 3.x, the patch would be to http/client.py, line 802 in 3.2 release
if isinstance(message_body, str) # becomes
if isinstance(message_body, bytes)

Will this be an issue in 3.x?
History
Date User Action Args
2011-04-30 00:11:31terry.reedysetrecipients: + terry.reedy, orsenthil, bero, ezio.melotti, santoso.wijaya
2011-04-30 00:11:31terry.reedysetmessageid: <1304122291.65.0.696701525838.issue11898@psf.upfronthosting.co.za>
2011-04-30 00:11:31terry.reedylinkissue11898 messages
2011-04-30 00:11:31terry.reedycreate