14 lines
291 B
Python
14 lines
291 B
Python
import sys
|
|
|
|
|
|
def str_coercible(cls):
|
|
if sys.version_info[0] >= 3: # Python 3
|
|
def __str__(self):
|
|
return self.__unicode__()
|
|
else: # Python 2
|
|
def __str__(self):
|
|
return self.__unicode__().encode('utf8')
|
|
|
|
cls.__str__ = __str__
|
|
return cls
|