How do I get warnings.warn to issue a warning and not ignore the line?

后端 未结 3 795
旧巷少年郎
旧巷少年郎 2020-12-16 10:07

I\'m trying to raise a DeprecationWarning, with a code snippet based on the example shown in the docs. http://docs.python.org/2/library/warnings.html#warnings.w

3条回答
  •  粉色の甜心
    2020-12-16 10:55

    From the docs:

    By default, Python installs several warning filters, which can be overridden by the command-line options passed to -W and calls to filterwarnings().

    • DeprecationWarning and PendingDeprecationWarning, and ImportWarning are ignored.
    • BytesWarning is ignored unless the -b option is given once or twice; in this case this warning is either printed (-b) or turned into an exception (-bb).

    By default, DeprecationWarning is ignored. You can change the filters using the following:

    warnings.simplefilter('always', DeprecationWarning)
    

    Now your warnings should be printed:

    >>> import warnings
    >>> warnings.simplefilter('always', DeprecationWarning)
    >>> warnings.warn('test', DeprecationWarning)
    /home/guest/.env/bin/ipython:1: DeprecationWarning: test
      #!/home/guest/.env/bin/python
    

提交回复
热议问题