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 terry.reedy
Recipients ezio.melotti, mjpieters, ned.deily, serhiy.storchaka, terry.reedy, vstinner
Date 2015-03-04.21:04:38
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1425503079.0.0.182784797095.issue23583@psf.upfronthosting.co.za>
In-reply-to
Content
I don't see what you have in mind.  Translating my example

class S(str):
    def __str__(self):
        return 'S: ' + str.__str__(self)

to

class U(unicode):
    def __unicode__(self):
        return u'U: ' + unicode.__unicode__(self)

does not work because there is no unicode.__unicode__.
History
Date User Action Args
2015-03-04 21:04:39terry.reedysetrecipients: + terry.reedy, mjpieters, vstinner, ned.deily, ezio.melotti, serhiy.storchaka
2015-03-04 21:04:39terry.reedysetmessageid: <1425503079.0.0.182784797095.issue23583@psf.upfronthosting.co.za>
2015-03-04 21:04:38terry.reedylinkissue23583 messages
2015-03-04 21:04:38terry.reedycreate