1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74
|
.. _python-warnings:
**********************
Python warnings system
**********************
.. doctest-skip-all
Astropy uses the Python :mod:`warnings` module to issue warning messages. The
details of using the warnings module are general to Python, and apply to any
Python software that uses this system. The user can suppress the warnings
using the python command line argument ``-W"ignore"`` when starting an
interactive python session. For example::
$ python -W"ignore"
The user may also use the command line argument when running a python script as
follows::
$ python -W"ignore" myscript.py
It is also possible to suppress warnings from within a python script. For
instance, the warnings issued from a single call to the
`astropy.io.fits.writeto` function may be suppressed from within a Python
script using the `warnings.filterwarnings` function as follows::
>>> import warnings
>>> from astropy.io import fits
>>> warnings.filterwarnings('ignore', category=UserWarning, append=True)
>>> fits.writeto(filename, data, overwrite=True)
An equivalent way to insert an entry into the list of warning filter specifications
for simple call `warnings.simplefilter`::
>>> warnings.simplefilter('ignore', UserWarning)
Astropy includes its own warning classes,
`~astropy.utils.exceptions.AstropyWarning` and
`~astropy.utils.exceptions.AstropyUserWarning`. All warnings from Astropy are
based on these warning classes (see below for the distinction between them). One
can thus ignore all warnings from Astropy (while still allowing through
warnings from other libraries like Numpy) by using something like::
>>> from astropy.utils.exceptions import AstropyWarning
>>> warnings.simplefilter('ignore', category=AstropyWarning)
Warning filters may also be modified just within a certain context using the
`warnings.catch_warnings` context manager::
>>> with warnings.catch_warnings():
... warnings.simplefilter('ignore', AstropyWarning)
... fits.writeto(filename, data, overwrite=True)
As mentioned above, there are actually *two* base classes for Astropy warnings.
The main distinction is that `~astropy.utils.exceptions.AstropyUserWarning` is
for warnings that are *intended* for typical users (e.g. "Warning: Ambiguous
unit", something that might be because of improper input). In contrast,
`~astropy.utils.exceptions.AstropyWarning` warnings that are *not*
`~astropy.utils.exceptions.AstropyUserWarning` may be for lower-level warnings
more useful for developers writing code that *uses* Astropy (e.g., the
deprecation warnings discussed below). So if you're a user that just wants to
silence everything, the code above will suffice, but if you are a developer and
want to hide development-related warnings from your users, you may wish to still
allow through `~astropy.utils.exceptions.AstropyUserWarning`.
Astropy also issues warnings when deprecated API features are used. If you
wish to *squelch* deprecation warnings, you can start Python with
``-Wi::Deprecation``. This sets all deprecation warnings to ignored. There is
also an Astropy-specific `~astropy.utils.exceptions.AstropyDeprecationWarning`
which can be used to disable deprecation warnings from Astropy only.
See `the CPython documentation
<https://docs.python.org/3/using/cmdline.html#cmdoption-W>`__ for more
information on the -W argument.
|