diff options
author | Martin Braun <martin.braun@ettus.com> | 2017-05-31 19:02:58 -0700 |
---|---|---|
committer | Martin Braun <martin.braun@ettus.com> | 2017-12-22 15:03:58 -0800 |
commit | 6183d9eeaa2cae6ca859b0a2f125d13842f57c39 (patch) | |
tree | 4f9f21529896aa90010239c16e17b6776e9f9c7e /mpm/python/usrp_mpm/uio.py | |
parent | 34c2fa0beea10308bc9afe6f20b734fc0839b226 (diff) | |
download | uhd-6183d9eeaa2cae6ca859b0a2f125d13842f57c39.tar.gz uhd-6183d9eeaa2cae6ca859b0a2f125d13842f57c39.tar.bz2 uhd-6183d9eeaa2cae6ca859b0a2f125d13842f57c39.zip |
mpm: Made code Python3-compatible
Diffstat (limited to 'mpm/python/usrp_mpm/uio.py')
-rw-r--r-- | mpm/python/usrp_mpm/uio.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/mpm/python/usrp_mpm/uio.py b/mpm/python/usrp_mpm/uio.py index a3441a7d7..2ea76233f 100644 --- a/mpm/python/usrp_mpm/uio.py +++ b/mpm/python/usrp_mpm/uio.py @@ -21,6 +21,8 @@ Access to UIO mapped memory. import struct import os import mmap +from builtins import hex +from builtins import object import pyudev from .mpmlog import get_logger |