从控制台
>>> sublime.run_command('test_application_args',{'arg1':'5', 'arg2':'4'})
running TestApplicationArgsCommand
arg1: 5
arg2: 4
我想找到什么.py文件有该命令,如果它不是一个如果它是一些旧的py文件我删除了不知何故pyc文件被遗忘,那么我想删除罪魁祸首pyc文件。我怎样才能知道这门课的位置?
我在一个文件中有类似的类和方法。
(我认为这个叫做TestApplicationArgsCommand,但我重命名它以测试它是否被调用,我改变了它打印的内容,但它没有改变控制台中该run命令输出的内容,所以我知道这个不是它。
import sublime, sublime_plugin
class TestApplicationArgsPodCommand(sublime_plugin.ApplicationCommand):
def run(self, arg1, arg2):
print("running TestApplicationArgsPodCommand")
print("arg1___: " + arg1)
print("arg2: " + arg2)
我在另一个文件中有类似的但我从他们打印的内容中看到(除了其他人不带2个args的事实),他们也不是被称为的人。
我怎样才能找到这个类和方法被调用的位置?
python控制台可以告诉我吗?