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 Mi.Zou, ezio.melotti, orsenthil, terry.reedy
Date 2013-02-22.18:16:09
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1361556969.76.0.276413441809.issue17214@psf.upfronthosting.co.za>
In-reply-to
Content
Please give us
1. the exact Python version used. 3.2.3? or something earlier?
2. A minimal but complete example that we can run. What is 'headers'?
3. The complete traceback, not just the last two entries.
4. The result of running with the newer 3.3.0, if you possibly can. Perhaps the problem has already been fixed.

While line numbers have changed, even in 3.2.4 in repository, 3.2-3.4 all have

        request = '%s %s %s' % (method, url, self._http_vsn_str)
        # Non-ASCII characters should have been eliminated earlier
        self._output(request.encode('ascii'))

Since there is nothing earlier in the function that would eliminate non-ascii, there must be an assumption about what happens earlier in the call chain. That might have already been fixed, which is why we need an example to test.
History
Date User Action Args
2013-02-22 18:16:09terry.reedysetrecipients: + terry.reedy, orsenthil, ezio.melotti, Mi.Zou
2013-02-22 18:16:09terry.reedysetmessageid: <1361556969.76.0.276413441809.issue17214@psf.upfronthosting.co.za>
2013-02-22 18:16:09terry.reedylinkissue17214 messages
2013-02-22 18:16:09terry.reedycreate