Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 3cb96b6

Browse files
committed
Fix after rebase
1 parent e56500f commit 3cb96b6

File tree

2 files changed

+1
-7
lines changed

2 files changed

+1
-7
lines changed

numpy/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -228,7 +228,7 @@
228228
from .lib._ufunclike_impl import fix, isneginf, isposinf
229229
from .lib._arraypad_impl import pad
230230
from .lib._utils_impl import (
231-
byte_bounds, show_runtime, get_include, info
231+
show_runtime, get_include, info
232232
)
233233
from . import matrixlib as _mat
234234
from .matrixlib import (

numpy/lib/tests/test_utils.py

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,6 @@
77
from io import StringIO
88

99

10-
@pytest.mark.filterwarnings("ignore:.*safe_eval.*:DeprecationWarning")
11-
def test_safe_eval_nameconstant():
12-
# Test if safe_eval supports Python 3.4 _ast.NameConstant
13-
utils.safe_eval('None')
14-
15-
1610
def test_assert_raises_regex_context_manager():
1711
with assert_raises_regex(ValueError, 'no deprecation warning'):
1812
raise ValueError('no deprecation warning')

0 commit comments

Comments
 (0)