跳到内容

deprecated-log-warn (PGH002)

源自 pygrep-hooks 代码检查工具。

警告:此规则已被移除,其文档仅供历史参考。

有时提供修复。

已移除

此规则与 G010 完全相同,应使用 G010 代替。

作用

检查是否使用了 logging 模块中已弃用的 warn 方法。

为什么这不好?

warn 方法已弃用。请改用 warning

示例

import logging


def foo():
    logging.warn("Something happened")

建议改为

import logging


def foo():
    logging.warning("Something happened")

参考