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 martin.panter
Recipients anish.shah, demian.brecht, luiz.poleto, martin.panter, orsenthil, r.david.murray, serhiy.storchaka, ztane
Date 2016-04-26.06:39:02
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1461652742.61.0.787686488276.issue22234@psf.upfronthosting.co.za>
In-reply-to
Content
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.
History
Date User Action Args
2016-04-26 06:39:02martin.pantersetrecipients: + martin.panter, orsenthil, r.david.murray, serhiy.storchaka, ztane, demian.brecht, luiz.poleto, anish.shah
2016-04-26 06:39:02martin.pantersetmessageid: <1461652742.61.0.787686488276.issue22234@psf.upfronthosting.co.za>
2016-04-26 06:39:02martin.panterlinkissue22234 messages
2016-04-26 06:39:02martin.pantercreate