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 flox
Recipients flox
Date 2013-05-19.14:17:56
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1368973077.46.0.479375460496.issue18012@psf.upfronthosting.co.za>
In-reply-to
Content
from Cookie import SimpleCookie

cookie = SimpleCookie()
cookie[u'apple'] = u'green'
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "/usr/local/Cellar/python/2.7.5/Frameworks/Python.framework/Versions/2.7/lib/python2.7/Cookie.py", line 592, in __setitem__
    self.__set(key, rval, cval)
  File "/usr/local/Cellar/python/2.7.5/Frameworks/Python.framework/Versions/2.7/lib/python2.7/Cookie.py", line 585, in __set
    M.set(key, real_value, coded_value)
  File "/usr/local/Cellar/python/2.7.5/Frameworks/Python.framework/Versions/2.7/lib/python2.7/Cookie.py", line 459, in set
    if "" != translate(key, idmap, LegalChars):
  File "/usr/local/Cellar/python/2.7.5/Frameworks/Python.framework/Versions/2.7/lib/python2.7/string.py", line 493, in translate
    return s.translate(table, deletions)
TypeError: translate() takes exactly one argument (2 given)



The documentation don't say it's not supported.
And the error TypeError seems not appropriate.
History
Date User Action Args
2013-05-19 14:17:57floxsetrecipients: + flox
2013-05-19 14:17:57floxsetmessageid: <1368973077.46.0.479375460496.issue18012@psf.upfronthosting.co.za>
2013-05-19 14:17:57floxlinkissue18012 messages
2013-05-19 14:17:56floxcreate