[issue22618] urllib.parse.parse_qsl different results after urllib.parse.unquote
New submission from Alex Vaystikh: parsing query-string before and after cleaning with urllib.parse.unquote can have very different results: http://nbviewer.ipython.org/gist/bornio/e112e6d8d04dfed898c8 Perhaps it should be better documented, or make the method more idempotent? -- components: Library (Lib) messages: 229144 nosy: Alex.Vaystikh, orsenthil priority: normal severity: normal status: open title: urllib.parse.parse_qsl different results after urllib.parse.unquote versions: Python 3.4 ___ Python tracker <http://bugs.python.org/issue22618> ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com
[issue22618] urllib.parse.parse_qsl different results after urllib.parse.unquote
Changes by Alex Vaystikh : -- type: -> behavior ___ Python tracker <http://bugs.python.org/issue22618> ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com
[issue22618] urllib.parse.parse_qsl different results after urllib.parse.unquote
Alex Vaystikh added the comment: It is much clearer after your insight: - I wasn't aware that 'parse_qs' unquotes values. That's most helpful! - I had no idea what 'keep_blank_values' were before your example, but now it couldn't be more obvious. I know that adding that example to docs would've helped me a lot! Maybe others? Thank you for the help! -- ___ Python tracker <http://bugs.python.org/issue22618> ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com