__builtins__ 的 pydev eclipse 配置?
假设在 init 上我已经在 builtins 下安装了我的函数 然后在我的项目中,我可以直接访问该函数,无需导入,但我如何告诉 Eclipse - 所以它不应该显示红色错误“未定义的变量”
__builtins__['_'] = gettext.gettext
suppose on init I've install my function under builtins
then throughout my project I can access it directly that function, no need to import, but how can I tell this to eclipse - so it should not show RED Error "undefined variable"
__builtins__['_'] = gettext.gettext
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
查看首选项 -> PyDev->编辑->代码分析。那里有很多用于调整代码分析的选项。
在我的 PyDev 上,
_
已经在 考虑将以下名称作为全局 列表中 - 您拥有哪个版本的 PyDev?Look in Preferences -> PyDev -> Editor -> Code Analysis. There's a bunch of options for adjusting code analysis in there.
On my PyDev,
_
is already in the Consider the following names as globals list though - which version of PyDev do you have?