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 terry.reedy
Recipients orsenthil, scratch, terry.reedy
Date 2022-01-21.22:09:07
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1642802947.6.0.397747590942.issue46397@roundup.psfhosted.org>
In-reply-to
Content
'urlencode()' is a TypeError as a query (dict) is needed.  The claim is that '/?' in a key are encoded but should not be.  I verified the encoding in 3.10.

>>> urlencode({'/?link': 'pubmed'})  
'%2F%3Flink=pubmed'

https://docs.python.org/3/library/urllib.parse.html#urllib.parse.urlencode
https://docs.python.org/3/library/urllib.parse.html#urllib.parse.quote
and the following entry from 'quote_plus' say that by default, quote_via is quote_plus and the latter quotes '/' and '?'.  So the bug report as stated is not valid.
---

They also say that passing 'quote_via=quote' should suppress quoting of '/', because it defaults to 'safe='/', but it does not.

>>> urlencode({'/?link': 'pubmed'}, quote_via=quote)
'%2F%3Flink=pubmed'

So either the doc should be changed in 3 places, or the default safe for quote should be '/' as documented.
---

Anh, use safe='/?' to get what you want.

>>> urlencode({'/?link': 'pubmed'}, quote_via=quote, safe='/?')
'/?link=pubmed'
History
Date User Action Args
2022-01-21 22:09:07terry.reedysetrecipients: + terry.reedy, orsenthil, scratch
2022-01-21 22:09:07terry.reedysetmessageid: <1642802947.6.0.397747590942.issue46397@roundup.psfhosted.org>
2022-01-21 22:09:07terry.reedylinkissue46397 messages
2022-01-21 22:09:07terry.reedycreate