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 Jorge.Cardona
Recipients Jorge.Cardona
Date 2012-11-03.18:13:13
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1351966393.52.0.468233404693.issue16397@psf.upfronthosting.co.za>
In-reply-to
Content
Hi,

I think UserString must play nicely with other standard objects to be useful. For example, right now is not possible to join a list of UserString with a string. 

This shouldn't fail:

   from UserString import UserString
   '.'.join([UserString('some')])

but it fails in 2.7 and it fails too with 3.2 (replacing with collections).

I'm assuming most of the user of UserString, use it as a replacement of a string, and it would be great to actually be able to replace strings passed to thid parties with userstrings. 

I imagine there would be some edge situations harder to resolve, but if someone is just using standard libraries it should be safe to pass a string or an userstring.

Bye.
History
Date User Action Args
2012-11-03 18:13:13Jorge.Cardonasetrecipients: + Jorge.Cardona
2012-11-03 18:13:13Jorge.Cardonasetmessageid: <1351966393.52.0.468233404693.issue16397@psf.upfronthosting.co.za>
2012-11-03 18:13:13Jorge.Cardonalinkissue16397 messages
2012-11-03 18:13:13Jorge.Cardonacreate