gpt4 book ai didi

python - 如何告诉 pylint 忽略某些进口?

转载 作者:IT老高 更新时间:2023-10-28 21:07:23 31 4
gpt4 key购买 nike

我正在使用 Python 开发适用于 Windows 的软件。我正在 Linux 上开发,我正在使用Pylint 来检查我的代码。我无法摆脱错误:

F| Unable to import '_winreg'   

这很明显——Linux 上的 Python 没有这个模块。

那么,我必须在 .pylintrc 中添加什么内容才能忽略此错误?

提前致谢,盎司

编辑:

文档说:

:F0401: *Unable to import %r*
Used when pylint has been unable to import a module.

现在我需要找到如何使用它...

部分解决方案:

pylint --disable=F0401 <filename>

我仍在寻找通过 .pylintrc 的方法。

最佳答案

使用以下代码也可以遇到这个问题:

 8: if os.name == 'nt':
9: import msvcrt
10: else:
11: import fcntl

pylint failed the build出现此错误:

E:  9, 4: Unable to import 'msvcrt' (import-error)

solutionpylint 0.10:

开始可用
 9:    import msvcrt  # pylint: disable=import-error

关于python - 如何告诉 pylint 忽略某些进口?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9602811/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com