python_2_unicode_compatible()
[source]
A decorator that defines __unicode__
and __str__
methods under Python 2. Under Python 3 it does nothing.
To support Python 2 and 3 with a single code base, define a __str__
method returning text and apply this decorator to the class.
Please login to continue.