标签: python-2.7
我正试图在不退出程序的情况下实时重新加载模块:
import test def ClickButton(self): # Testing purposes reload(test)
错误:
No module named 'test'
有没有预编译源的解决方案(py - > pyc)?因为我的文件在文件夹/测试之间连接它们而不在/ lib(来自python的文件夹)
谢谢!