Fixed issues caused by importing from __init__ statements

This commit is contained in:
_ 2018-05-17 15:20:39 -07:00
parent 911a1ad840
commit 9b9f0bd6ee
3 changed files with 22 additions and 3 deletions

View File

@ -1,5 +1,11 @@
import ctypes
from __init__ import libc
import os, sys
sys.path.append(
os.path.abspath(
os.path.join(
os.path.dirname(__file__), "../../")))
from lib3ddevil1.bindings import libc
del os, sys
#--------------------------------------+
# Basic Struct

View File

@ -1,5 +1,12 @@
import ctypes
from __init__ import libc
import os, sys
# This is the folder containing the whole library.
sys.path.append(
os.path.abspath(
os.path.join(
os.path.dirname(__file__), "../../")))
from lib3ddevil1.bindings import libc
del os, sys
#--------------------------------------+
# Basic Struct

View File

@ -1,5 +1,11 @@
import ctypes
from __init__ import libc
import os, sys
sys.path.append(
os.path.abspath(
os.path.join(
os.path.dirname(__file__), "../../")))
from lib3ddevil1.bindings import libc
del os, sys
#--------------------------------------+
# Basic Struct