File: utils.py

package info (click to toggle)
python-astropy 1.3-8~bpo8%2B2
  • links: PTS, VCS
  • area: main
  • in suites: jessie-backports
  • size: 44,292 kB
  • sloc: ansic: 160,360; python: 137,322; sh: 11,493; lex: 7,638; yacc: 4,956; xml: 1,796; makefile: 474; cpp: 364
file content (20 lines) | stat: -rw-r--r-- 669 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# Licensed under a 3-clause BSD style license - see LICENSE.rst
# -*- coding: utf-8 -*-

from __future__ import absolute_import, division, unicode_literals, print_function

import contextlib
import warnings
from ...tests.helper import catch_warnings


@contextlib.contextmanager
def ignore_non_integer_warning():
    # We need to ignore this warning on Scipy < 0.14.
    # When our minimum version of Scipy is bumped up, this can be
    # removed.
    with catch_warnings():
        warnings.filterwarnings(
            "always", "using a non-integer number instead of an integer "
            "will result in an error in the future", DeprecationWarning)
        yield