219

我不断得到这个:

DeprecationWarning: integer argument expected, got float

如何让这条消息消失?有没有办法避免 Python 中的警告?

4

16 回答 16

260

你应该只修复你的代码,但以防万一,

import warnings
warnings.filterwarnings("ignore", category=DeprecationWarning) 
于 2009-05-18T19:01:48.350 回答
213

我有这些:

/home/eddyp/virtualenv/lib/python2.6/site-packages/Twisted-8.2.0-py2.6-linux-x86_64.egg/twisted/persisted/sob.py:12:
DeprecationWarning: the md5 module is deprecated; use hashlib instead import os, md5, sys

/home/eddyp/virtualenv/lib/python2.6/site-packages/Twisted-8.2.0-py2.6-linux-x86_64.egg/twisted/python/filepath.py:12:
DeprecationWarning: the sha module is deprecated; use the hashlib module instead import sha

修复它:

import warnings

with warnings.catch_warnings():
    warnings.filterwarnings("ignore",category=DeprecationWarning)
    import md5, sha

yourcode()

现在你仍然得到所有其他DeprecationWarning的,但不是由以下原因引起的:

import md5, sha
于 2009-10-28T23:24:01.537 回答
136

warnings模块的文档:

 #!/usr/bin/env python -W ignore::DeprecationWarning

如果您在 Windows 上:-W ignore::DeprecationWarning作为参数传递给 Python。最好通过强制转换为int来解决问题。

(请注意,在 Python 3.2 中,默认情况下会忽略弃用警告。)

于 2009-05-18T18:50:07.827 回答
49

这些答案都不适合我,所以我将发布解决此问题的方法。我使用以下at the beginning of my main.py脚本,它工作正常。


按原样使用以下内容(复制粘贴):

def warn(*args, **kwargs):
    pass
import warnings
warnings.warn = warn

例子:

import "blabla"
import "blabla"

def warn(*args, **kwargs):
    pass
import warnings
warnings.warn = warn

# more code here...
# more code here...

于 2018-05-24T23:49:18.303 回答
32

我发现最简洁的方法(尤其是在 Windows 上)是将以下内容添加到 C:\Python26\Lib\site-packages\sitecustomize.py:

import warnings
warnings.filterwarnings("ignore", category=DeprecationWarning)

请注意,我必须创建此文件。当然,如果您的路径不同,请更改为 python 的路径。

于 2010-03-04T17:35:36.753 回答
8

码头解决方案

  • 在运行 python 应用程序之前禁用所有警告
    • 您也可以禁用 dockerized 测试
ENV PYTHONWARNINGS="ignore::DeprecationWarning"
于 2019-05-02T07:41:26.203 回答
7

蟒蛇 3

只需在编写代码之前写下容易记住的行:

import warnings

warnings.filterwarnings("ignore")
于 2019-11-19T13:01:26.793 回答
5

传递正确的论点?:P

更严重的是,您可以将命令行上的参数 -Wi::DeprecationWarning 传递给解释器以忽略弃用警告。

于 2009-05-18T18:49:35.567 回答
4

当您只想忽略函数中的警告时,可以执行以下操作。

import warnings
from functools import wraps


def ignore_warnings(f):
    @wraps(f)
    def inner(*args, **kwargs):
        with warnings.catch_warnings(record=True) as w:
            warnings.simplefilter("ignore")
            response = f(*args, **kwargs)
        return response
    return inner

@ignore_warnings
def foo(arg1, arg2):
    ...
    write your code here without warnings
    ...

@ignore_warnings
def foo2(arg1, arg2, arg3):
    ...
    write your code here without warnings
    ...

只需在要忽略所有警告的函数上添加 @ignore_warnings 装饰器

于 2017-12-04T21:02:39.940 回答
3

将参数转换为 int。这很简单

int(argument)
于 2009-05-18T18:49:38.453 回答
3

对于 python 3,只需编写以下代码即可忽略所有警告。

from warnings import filterwarnings
filterwarnings("ignore")
于 2019-12-14T16:34:27.490 回答
2

如果您使用的是 Python3,请尝试以下代码:

import sys

if not sys.warnoptions:
    import warnings
    warnings.simplefilter("ignore")

或试试这个...

import warnings

def fxn():
    warnings.warn("deprecated", DeprecationWarning)

with warnings.catch_warnings():
    warnings.simplefilter("ignore")
    fxn()

或试试这个...

import warnings
warnings.filterwarnings("ignore")
于 2020-03-08T04:53:54.833 回答
0

如果您知道自己在做什么,另一种方法是简单地找到警告您的文件(文件的路径显示在警告信息中),注释生成警告的行。

于 2019-08-16T07:33:07.203 回答
0

如果您使用日志记录 ( https://docs.python.org/3/library/logging.html ) 来格式化或重定向您的错误、通知和调试消息,您可以将警告从警告系统重定向到日志记录系统:

logging.captureWarnings(True)

请参阅https://docs.python.org/3/library/warnings.htmlhttps://docs.python.org/3/library/logging.html#logging.captureWarnings

就我而言,我正在使用日志系统格式化所有异常,但警告(例如 scikit-learn)不受影响。

于 2020-09-17T22:17:47.687 回答
-2

不是为了打败你,而是警告你,当你下次升级 python 时,你正在做的事情可能会停止工作。转换为 int 并完成它。

顺便提一句。您还可以编写自己的警告处理程序。只需分配一个什么都不做的函数。 如何将 python 警告重定向到自定义流?

于 2009-05-18T18:55:05.603 回答
-4

注释掉以下文件中的警告行:

lib64/python2.7/site-packages/cryptography/__init__.py
于 2020-09-20T08:35:45.993 回答