-
Notifications
You must be signed in to change notification settings - Fork 591
Closed
Description
When testing db field with unicode string, UnicodeEncodeError exception is raised.
Line which causes the exception:
db.get(where('name') == u'žir')Inserting unicode data went without problems:
db.insert({'name': 'žir'})I have made quick hack which fixes problem for my little hobby project, but I will examine this problem more when I find time.
In queries.py, I've changed Query._update_repr function body to:
self._repr = u'\'{0}\' {1} {2}'.format(self._key, operator, value)and Query.__hash__ to:
return hash(repr(unicode(self)))Basically adding string preffix "u" in _update_repr, and "unicode" call in __hash__...
Using tinydb from git on python 2.7.6, ubuntu 14.04
Metadata
Metadata
Assignees
Labels
No labels