File "test_financial_expired.py"

Full Path: /home/attunedd/public_html/byp/izo/con7ext_sym404/rintoar.txt/opt/cloudlinux/venv/lib/python3.11/site-packages/numpy/lib/tests/test_financial_expired.py
File size: 247 bytes
MIME-type: text/x-script.python
Charset: utf-8

import sys
import pytest
import numpy as np


def test_financial_expired():
    match = 'NEP 32'
    with pytest.warns(DeprecationWarning, match=match):
        func = np.fv
    with pytest.raises(RuntimeError, match=match):
        func(1, 2, 3)