Message264219
Luiz: Your _36 patch looks like it adds an unconditional warning whenever urlparse() is called, but I would have expected it to depend on the type of the “url” parameter.
There are related functions that seem to accept false values like None in Python 3, but not in Python 2. Perhaps they should also be considered with any changes:
urlsplit(None)
parse_qs(None)
parse_qsl(None)
urldefrag(None)
Also, I wonder if we should continue to accept bytearray as well as bytes. Bytearray has a decode() method. |
|
Date |
User |
Action |
Args |
2016-04-26 06:39:02 | martin.panter | set | recipients:
+ martin.panter, orsenthil, r.david.murray, serhiy.storchaka, ztane, demian.brecht, luiz.poleto, anish.shah |
2016-04-26 06:39:02 | martin.panter | set | messageid: <1461652742.61.0.787686488276.issue22234@psf.upfronthosting.co.za> |
2016-04-26 06:39:02 | martin.panter | link | issue22234 messages |
2016-04-26 06:39:02 | martin.panter | create | |
|