Closed emyller closed 9 years ago
The uuidfield module has some unicode calls that are blocking data serialization on Python 3.
uuidfield
unicode
IMHO, these calls as well as any __unicode__ methods should be dropped in favor of __str__ since there is no non-ASCII char in UUIDs anyway.
__unicode__
__str__
can be closed.
The
uuidfield
module has someunicode
calls that are blocking data serialization on Python 3.IMHO, these calls as well as any
__unicode__
methods should be dropped in favor of__str__
since there is no non-ASCII char in UUIDs anyway.