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 iko
Recipients
Date 2007-04-03.12:13:52
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
Reading the ABNF for the extended parameter values in RFC2231 reveals that they should not be quoted:

   extended-initial-value := [charset] "'" [language] "'"
                             extended-other-values

   extended-other-values := *(ext-octet / attribute-char)

however, set_param (really _formatparam) will always quote them unless requote is set to false. The fix is probably to force quote in _formatparam to False if faced with RFC2231 values, since they should never be quoted (and should not contain characters requiring quoting),
History
Date User Action Args
2007-08-23 14:52:54adminlinkissue1693546 messages
2007-08-23 14:52:54admincreate