mit neuen venv und exe-Files
This commit is contained in:
13
venv3_12/Lib/site-packages/lief/__init__.py
Normal file
13
venv3_12/Lib/site-packages/lief/__init__.py
Normal file
@@ -0,0 +1,13 @@
|
||||
import os
|
||||
import sys
|
||||
import traceback
|
||||
if len(__path__) > 0 and __path__[0] not in sys.path:
|
||||
from . import _lief
|
||||
from ._lief import *
|
||||
from ._lief import __version__, __tag__, __commit__, __is_tagged__, __extended__
|
||||
|
||||
# cf. https://github.com/pytorch/pytorch/blob/60a3b7425dde97fe8b46183c154a9c3b24f0c733/torch/__init__.py#L467-L470
|
||||
for attr in dir(_lief):
|
||||
candidate = getattr(_lief, attr)
|
||||
if type(candidate) is type(_lief):
|
||||
sys.modules.setdefault(f"lief.{attr}", candidate)
|
||||
Reference in New Issue
Block a user