[issue28945] get_boundary invokes unquote twice

bpoaugust report at bugs.python.org
Tue Dec 20 05:38:51 EST 2016


bpoaugust added the comment:

It looks like a simpler alternative is to just change

boundary = self.get_param('boundary', missing)
to
boundary = self.get_param('boundary', missing, unquote=False)

and let collapse_rfc2231_value do the unquoting

----------

_______________________________________
Python tracker <report at bugs.python.org>
<http://bugs.python.org/issue28945>
_______________________________________


More information about the Python-bugs-list mailing list