Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Python 3.0 urllib.parse error "Type str doesn't support the buffer API"

Tags:

  File "/usr/local/lib/python3.0/cgi.py", line 477, in __init__     self.read_urlencoded()   File "/usr/local/lib/python3.0/cgi.py", line 577, in read_urlencoded     self.strict_parsing):   File "/usr/local/lib/python3.0/urllib/parse.py", line 377, in parse_qsl     pairs = [s2 for s1 in qs.split('&') for s2 in s1.split(';')] TypeError: Type str doesn't support the buffer API 

Can anybody direct me on how to avoid this? I'm getting it through feeding data into the cgi.Fieldstorage and I can't seem to do it any other way.

like image 323
Evan Fosmark Avatar asked Feb 12 '09 07:02

Evan Fosmark


1 Answers

urllib is trying to do:

b'a,b'.split(',') 

Which doesn't work. byte strings and unicode strings mix even less smoothly in Py3k than they used to — deliberately, to make encoding problems go wrong sooner rather than later.

So the error is rather opaquely telling you ‘you can't pass a byte string to urllib.parse’. Presumably you are doing a POST request, where the form-encoded string is coming into cgi as a content body; the content body is still a byte string/stream so it now clashes with the new urllib.

So yeah, it's a bug in cgi.py, yet another victim of 2to3 conversion that hasn't been fixed properly for the new string model. It should be converting the incoming byte stream to characters before passing them to urllib.

Did I mention Python 3.0's libraries (especially web-related ones) still being rather shonky? :-)

like image 173
bobince Avatar answered May 30 '23 01:05

bobince