Stephen Day added the comment:
While it's likely that adding a `quote`/`quote_plus` function paramater to
urlencode is the right solution, I want to ensure that the key point is
communicated clearly: encoding a space as a '+' is pathological, in that in the
common case, an un
Stephen Day added the comment:
I apologize for reopening this bug, but I find your interpretation to be
inaccurate. While technically valid, the combination of the documentation, the
function name and the main use cases yields pathological invocations of
urlencode. My bug report is to help
New submission from Stephen Day :
The current behavior of the urlencode function (2.7: urllib, 3.x: urllib.parse)
encodes spaces as pluses:
>>> from urllib import urlencode
>>> urlencode({'a': 'some param'})
'a=some+param'
However, in most i
Stephen Day added the comment:
This seems to be fixed already (see Issue4718). Next time I'll search
more...
___
Python tracker
<http://bugs.python.org/i
New submission from Stephen Day :
The attached application doesn't work. I think the value of self.headers
(see line 114) has a blank line at the end that it did not in Python 2.5
Here is the error message that occurs when it gets a request
(http://127.0.0.1:8080/):
Exception hap