运行 Python 时 DeprecationWarning 是什么意思
What does DeprecationWarning mean when running Python
我 运行 一个 Python 程序并得到了一个 DeprecationWarning
,例如:
D:\programs\anaconda2\lib\site-packages\sklearn\utils\deprecation.py:70: DeprecationWarning: Function log_multivariate_normal_density is deprecated; The function log_multivariate_normal_density is deprecated in 0.18 and will be removed in 0.20.
warnings.warn(msg, category=DeprecationWarning)
我无法确认它有什么问题。什么是 DeprecationWarning
?
一般来说,开发人员正在开发库,在开发过程中有时会添加或更改内容,有时会删除主题。删除是危险的,因为用户可能会使用它,如果开发人员想要删除某个东西,首先必须通知其他人不要使用这个功能或东西,然后他才能删除。 DeprecationWarning 就是这个通知。
我 运行 一个 Python 程序并得到了一个 DeprecationWarning
,例如:
D:\programs\anaconda2\lib\site-packages\sklearn\utils\deprecation.py:70: DeprecationWarning: Function log_multivariate_normal_density is deprecated; The function log_multivariate_normal_density is deprecated in 0.18 and will be removed in 0.20.
warnings.warn(msg, category=DeprecationWarning)
我无法确认它有什么问题。什么是 DeprecationWarning
?
一般来说,开发人员正在开发库,在开发过程中有时会添加或更改内容,有时会删除主题。删除是危险的,因为用户可能会使用它,如果开发人员想要删除某个东西,首先必须通知其他人不要使用这个功能或东西,然后他才能删除。 DeprecationWarning 就是这个通知。