From c13d9734af5eff37fc34c7a21894f5ae895c4ee4 Mon Sep 17 00:00:00 2001 From: Hal Finkel <hfinkel@anl.gov> Date: Mon, 29 Aug 2016 10:47:09 -0500 Subject: [PATCH] Fixup genericio python to be more path independent --- python/example.py | 2 +- python/{gio.py => genericio.py} | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) rename python/{gio.py => genericio.py} (97%) diff --git a/python/example.py b/python/example.py index 7d90f28..d4c2d9e 100644 --- a/python/example.py +++ b/python/example.py @@ -38,7 +38,7 @@ # ***************************************************************************** import sys -import gio +import genericio as gio name = sys.argv[1] gio.gio_inspect(name) diff --git a/python/gio.py b/python/genericio.py similarity index 97% rename from python/gio.py rename to python/genericio.py index a37a8fc..7e94614 100644 --- a/python/gio.py +++ b/python/genericio.py @@ -42,8 +42,8 @@ import ctypes as ct import os #Define where the library is and load it -_path = os.path.dirname('__file__') -libpygio = ct.CDLL(os.path.abspath('../frontend/libpygio.so')) +_path = os.path.dirname(__file__) +libpygio = ct.CDLL(_path + '/../frontend/libpygio.so') #we need to define the return type ("restype") and #the argument types libpygio.get_elem_num.restype=ct.c_int64 -- GitLab