[issue35100] urllib.parse.unquote_to_bytes: needs "escape plus" option

2019-04-18 Thread andrew-g
andrew-g added the comment: pinging the issue to try get the PR reviewed -- nosy: +andrew-g ___ Python tracker ___ ___ Python-bugs-

[issue35100] urllib.parse.unquote_to_bytes: needs "escape plus" option

2019-03-16 Thread andrew-g
Change by andrew-g : -- keywords: +patch pull_requests: +12331 stage: -> patch review ___ Python tracker ___ ___ Python-bugs-list m

[issue35100] urllib.parse.unquote_to_bytes: needs "escape plus" option

2019-03-02 Thread SilentGhost
Change by SilentGhost : -- nosy: +orsenthil versions: +Python 3.8 -Python 3.5, Python 3.6, Python 3.7 ___ Python tracker ___ ___ Pyt

[issue35100] urllib.parse.unquote_to_bytes: needs "escape plus" option

2019-03-02 Thread Lysandros Nikolaou
Lysandros Nikolaou added the comment: This issue still stands. The output of all three methods is exactly the same as it was when the original question was posted. Would it maybe make sense to add a flag to the unquote_to_bytes method to parse the 'plus' symbol as a space? Or maybe create a

[issue35100] urllib.parse.unquote_to_bytes: needs "escape plus" option

2018-10-28 Thread Henry Zhu
New submission from Henry Zhu : `urllib.parse.unquote_to_bytes` should have an "escape plus" option, just like `urllib.parse.unquote_plus` does. It's very necessary in some cases: ``` # Say I have a url string: 'a+%2b%c0'. # In Python2, I can parse it into b'a +\xc0' with urllib.unquote_plus