Message151980
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 instances, it would be desirable to merely encode spaces using percent encoding:
>>> urlencode({'a': 'some param'})
'a=some%20param'
But there is no way to get this behavior in the standard library.
It would probably best to change this so it defaults to use the regular quote function, but allows callers who need the legacy quote_plus behavior to pass that in as a function parameter.
An acceptable fix would be to have the quote function taken as a keyword parameter, so legacy behavior remains:
>>> urlencode({'a': 'some param'})
'a=some+param'
Then the behavior could be adjusted where needed:
>>> from urllib import quote
>>> urlencode({'a': 'some param'}, quote=quote)
'a=some%20param' |
|
Date |
User |
Action |
Args |
2012-01-25 22:12:02 | Stephen.Day | set | recipients:
+ Stephen.Day |
2012-01-25 22:12:02 | Stephen.Day | set | messageid: <1327529522.13.0.464287316871.issue13866@psf.upfronthosting.co.za> |
2012-01-25 22:12:01 | Stephen.Day | link | issue13866 messages |
2012-01-25 22:12:01 | Stephen.Day | create | |
|