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 suicideducky
Recipients georg.brandl, suicideducky
Date 2008-12-09.00:30:27
SpamBayes Score 0.0006359809
Marked as misclassified No
Message-id <1228782629.1.0.4913210804.issue4605@psf.upfronthosting.co.za>
In-reply-to
Content
http://docs.python.org/3.0/library/stdtypes.html#str.translate
mentions the following:
"You can use the maketrans() helper function in the string module to 
create a translation table."

But maketrans is now a string method not just a function of the string 
module. It even mentions that right above it that it is now a method of 
string objects:
"A map for translate() is usually best created by str.maketrans()."

The page where this all appears in is:
http://docs.python.org/3.0/library/stdtypes.html

It may have just not been updated fully from an older release.
If I am mistaken and this is not a bug, I appologise.
History
Date User Action Args
2008-12-09 00:30:29suicideduckysetrecipients: + suicideducky, georg.brandl
2008-12-09 00:30:29suicideduckysetmessageid: <1228782629.1.0.4913210804.issue4605@psf.upfronthosting.co.za>
2008-12-09 00:30:28suicideduckylinkissue4605 messages
2008-12-09 00:30:28suicideduckycreate