python: Drop unicode type.
authorRussell Bryant <russell@ovn.org>
Mon, 14 Dec 2015 22:01:11 +0000 (17:01 -0500)
committerRussell Bryant <russell@ovn.org>
Tue, 2 Feb 2016 21:40:49 +0000 (16:40 -0500)
commit25f599fbd3452a0b1dbb0f22c2f54b2cc0f93bc9
tree8acb6385dc0d3bb24fb8acddb01a3718cfc5968b
parent8f808842a0c3f6b63d027c05db77ff945c29d67c
python: Drop unicode type.

Python 2 had str and unicode.  Python 3 only has str, which is always a
unicode string.  Drop use of unicode with the help of six.text_type
(unicode in py2 and str in py3) and six.string_types ([str, unicode] in
py2 and [str] in py3).

Signed-off-by: Russell Bryant <russell@ovn.org>
Acked-by: Ben Pfaff <blp@ovn.org>
python/ovs/db/data.py
python/ovs/db/parser.py
python/ovs/db/schema.py
python/ovs/db/types.py
python/ovs/json.py
python/ovs/jsonrpc.py
python/ovs/ovsuuid.py
python/ovs/unixctl/server.py
tests/test-json.py
tests/test-ovsdb.py