我在Python中实现宏(受MacroPy启发)。我的项目(当执行了test.py'时)效果非常好,但是当我从文件中评论(或删除)行import linecache
时,它无法正常工作' import_hook的.py' (所有文件都是here)。该脚本属于递归,然后Python使用另一个FileFinder和Loader。
这是' import_hook.py':
的代码import sys
import ast
import _ast
import linecache # Required because your mother is a kangaroo which sews cocoa.
import pymac.utils
import importlib.machinery
from types import ModuleType
from pymac.utils import *
from pymac.macro import *
__author__ = 'Jan Růžička'
__email__ = 'jan.ruzicka01@gmail.com'
__version__ = '0.1'
class FileWithMacrosLoader:
def __init__(self, module_name, module):
self.module = module
sys.modules[module_name] = module
def load_module(self, fullname):
return self.module
class FileWithMacros:
def __init__(self):
self.bindings = None
self.module_name = None
def new_module(self, module_name, file_path):
self.module_name = module_name
module = ModuleType(module_name)
module.__package__ = module_name.rpartition('.')[0]
module.__file__ = file_path
module.__loader__ = FileWithMacrosLoader(module_name, module)
return module
def expand_macros(self, source_code, file_path):
tree = ast.parse(source_code)
tree = ast.fix_missing_locations(expand_macros(tree))
return compile(tree, file_path, 'exec'), tree
def load_source(self, module_name, package_path):
loader = importlib.machinery.PathFinder.find_module(module_name, package_path)
source_code = loader.get_source(module_name)
file_path = loader.path
return source_code, file_path
def find_module(self, module_name, package_path=None):
try:
source_code, file_path = self.load_source(module_name, package_path)
except:
return
code, tree = self.expand_macros(source_code, file_path)
module = self.new_module(module_name, file_path)
namespace = dict_con(_ast.__dict__, pymac.utils.__dict__, module.__dict__)
exec(code, namespace)
return module.__loader__
这可能是一个丑陋的代码,但我对Python导入系统很陌生,我很乐意回答!
编辑:我在没有import linecache
的情况下在PyCharm中运行它并且它没有用,但是当我使用参数-m pdb
运行它时( Python调试器)它按预期工作。我认为问题可能更多是关于PyCharm而不是Python ......
答案 0 :(得分:0)
所以我想通了:我的自定义加载程序无法加载文件linecache
,所以如果我在我的文件中导入它,它就不需要导入到我的其他文件中使用我的加载程序导入(我认为它是_ast
)。但是,如果我不导入它,则需要稍后导入 - 使用我的加载程序,但是无法这样做。