[issue23583] IDLE: printing unicode subclasses broken (again)

Serhiy Storchaka report at bugs.python.org
Wed Mar 4 16:29:04 CET 2015


Serhiy Storchaka added the comment:

I can propose two ways to fix this:

    s = unicode.__getslice__(s, 0, unicode.__len__(s))

and

    s = unicode.__getitem__(s, slice(None))

----------

_______________________________________
Python tracker <report at bugs.python.org>
<http://bugs.python.org/issue23583>
_______________________________________


More information about the Python-bugs-list mailing list