diff options
| author | Richard W.M. Jones <rjones@redhat.com> | 2011-11-19 16:54:26 +0000 |
|---|---|---|
| committer | Richard W.M. Jones <rjones@redhat.com> | 2011-11-19 16:54:26 +0000 |
| commit | 207402a20ac8be74e767876f8ac93aba6292b2a9 (patch) | |
| tree | 961eb78edec509b6a55f27b0047a042ef5760ae6 /python | |
| parent | a6ba26dca8dd496bec71d65746b3c3b65e604f03 (diff) | |
| download | hivex-207402a20ac8be74e767876f8ac93aba6292b2a9.tar.gz hivex-207402a20ac8be74e767876f8ac93aba6292b2a9.tar.xz hivex-207402a20ac8be74e767876f8ac93aba6292b2a9.zip | |
python: Support Python 3 (RHBZ#752916).
Diffstat (limited to 'python')
| -rw-r--r-- | python/Makefile.am | 2 | ||||
| -rw-r--r-- | python/t/210-setvalue.py | 13 |
2 files changed, 12 insertions, 3 deletions
diff --git a/python/Makefile.am b/python/Makefile.am index 89e66f8..be1523e 100644 --- a/python/Makefile.am +++ b/python/Makefile.am @@ -26,7 +26,7 @@ EXTRA_DIST = \ if HAVE_PYTHON -pythondir = $(PYTHON_SITE_PACKAGES) +pythondir = $(PYTHON_INSTALLDIR) python_DATA = hivex.py diff --git a/python/t/210-setvalue.py b/python/t/210-setvalue.py index 1cb8c52..9d93519 100644 --- a/python/t/210-setvalue.py +++ b/python/t/210-setvalue.py @@ -15,6 +15,7 @@ # along with this program; if not, write to the Free Software # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +import sys import os import hivex @@ -46,12 +47,20 @@ h.node_set_value (b, value1) value1 = { "key": "Key1", "t": 3, "value": "JKL" } h.node_set_value (b, value1) +# In Python2, the data is returned as a string. In Python3, it is +# returned as bytes. Provide a function to convert either to a string. +def to_string (data): + if sys.version_info[0] == 2: + return data + else: + return str (data, "utf-8") + val = h.node_get_value (b, "Key1") t_data = h.value_value (val) assert t_data[0] == 3 -assert t_data[1] == "JKL" +assert to_string (t_data[1]) == "JKL" val = h.node_get_value (b, "Key3") t_data = h.value_value (val) assert t_data[0] == 3 -assert t_data[1] == "GHI" +assert to_string (t_data[1]) == "GHI" |
