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 ncoghlan
Recipients ncoghlan
Date 2014-08-13.05:49:12
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1407908952.77.0.872981126645.issue22189@psf.upfronthosting.co.za>
In-reply-to
Content
str currently implements some methods that UserString doesn't:

>>> set(dir(str)) - set(dir(UserString))
{'__rmod__', 'casefold', 'isprintable', 'maketrans', 'format_map', '__getnewargs__'}

casefold, isprintable & format_map (and perhaps __rmod__) should likely be available on UserString as well.
History
Date User Action Args
2014-08-13 05:49:12ncoghlansetrecipients: + ncoghlan
2014-08-13 05:49:12ncoghlansetmessageid: <1407908952.77.0.872981126645.issue22189@psf.upfronthosting.co.za>
2014-08-13 05:49:12ncoghlanlinkissue22189 messages
2014-08-13 05:49:12ncoghlancreate