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 bokr
Recipients
Date 2005-04-30.20:31:08
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
This feature would permit passing None as the first
argument to str.translate in place of  an identity
translation
table like ''.join([[chr(i) for i in xrange(256)])

This should be handy for deleting characters, e.g., as in

     s = s.translate(None, delchars)
History
Date User Action Args
2007-08-23 16:10:57adminlinkissue1193128 messages
2007-08-23 16:10:57admincreate