隐藏未解决的导入错误
我在 Linux 上使用 Eclipse 的 Python 插件:PyDev,并且正在编写一个跨平台应用程序。
在此应用程序中,我有以下几行代码:
try :
from win32com.shell import shellcon, shell
appdata_path = shell.SHGetFolderPath(0, shellcon.CSIDL_APPDATA, 0, 0)
except :
appdata_path = os.environ['APPDATA']
PyDev 显示 2 个错误:
Unresolved import: shell
Unresolved import: shellcon
出现这些错误是因为我的系统上未安装 pywin32 扩展,并且我无法安装它,因为有 Windows 扩展,不是Linux。
它有办法隐藏或忽略(仅)这些错误吗?
谢谢
I work with the Python plugin for Eclipse : PyDev on Linux and I'm writing a cross-platform application.
In this application, I have the following lines code :
try :
from win32com.shell import shellcon, shell
appdata_path = shell.SHGetFolderPath(0, shellcon.CSIDL_APPDATA, 0, 0)
except :
appdata_path = os.environ['APPDATA']
PyDev show me 2 errors :
Unresolved import: shell
Unresolved import: shellcon
These errors appears because the pywin32
extensions aren't installed on my system and I can't install it because there are windows extensions, not linux.
Is it have a way to hide or ignore (only) these errors ?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在失败的导入行上单击 Ctl + 1,然后选择 @UnresolvedImport error
或手动,如下所示:
Click Ctl + 1 on the failing import line and select @UnresolvedImport error
or manually, make like this: