X-Git-Url: https://git.llucax.com/software/pymin.git/blobdiff_plain/296d853cc95fd5bef262248cfe21b507abd26a4f..908f8f27227d1b8f50b48be3a19da2ee1b013f41:/pymin/seqtools.py diff --git a/pymin/seqtools.py b/pymin/seqtools.py index d3de929..4a6338a 100644 --- a/pymin/seqtools.py +++ b/pymin/seqtools.py @@ -39,8 +39,14 @@ class Sequence: r"obj[i] -> object :: Get item with the index i." return self.as_tuple()[i] + def __unicode__(self): + return u'%s%r' % (self.__class__.__name__, self.as_tuple()) + + def __str__(self): + return unicode(self).encode('utf-8') + def __repr__(self): - return '%s%r' % (self.__class__.__name__, self.as_tuple()) + return str(self) def as_tuple(obj): r"""as_tuple(obj) -> tuple :: Convert objects to tuple.