导入模块解析器时收到弃用警告
我在运行代码时遇到以下错误。如何解决这个问题?
DeprecationWarning:解析器模块已弃用,并将在未来版本的 Python 中删除
I am getting below error while running code. How to fix this?
DeprecationWarning: The parser module is deprecated and will be removed in future versions of Python
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
正如消息所述,
parser
模块在 3.9 版本中已弃用,最终将被删除。它的大部分功能可以在
ast
模块中找到;重写代码以使用ast
应该不会太难,尽管它不是简单的函数名称搜索和替换。这取决于parser
模块的用途。幸运的是,您仍然有一些时间来解决这个问题(并且该模块不会从当前支持它的 Python 版本中消失)。
As the message says, the
parser
module was deprecated in version 3.9, and will eventually be removed.Most of its functionality can be found in the
ast
module; it shouldn't be too hard to rewrite the code to useast
, although it's not a simple search-and-replace for function names. It depends on what theparser
module is being used for.Fortunately, you still have some time to sort this out (and the module isn't going to disappear from Python versions which currently support it).