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, r.david.murray
Date 2013-05-19.14:49:51
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1368974991.31.0.0695025152428.issue18012@psf.upfronthosting.co.za>
In-reply-to
Content
you're right, this behavior is documented.

>>> u'read this short text'.translate(None, 'aeiou')
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
TypeError: translate() takes exactly one argument (2 given)
>>> 

http://docs.python.org/2/library/stdtypes.html#str.translate
History
Date User Action Args
2013-05-19 14:49:51floxsetrecipients: + flox, r.david.murray
2013-05-19 14:49:51floxsetmessageid: <1368974991.31.0.0695025152428.issue18012@psf.upfronthosting.co.za>
2013-05-19 14:49:51floxlinkissue18012 messages
2013-05-19 14:49:51floxcreate