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

Skip to content

Commit 0ff4ac7

Browse files
committed
Fix after rebase
1 parent 744f05d commit 0ff4ac7

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
@@ -218,7 +218,7 @@
218218
from .lib._ufunclike_impl import fix, isneginf, isposinf
219219
from .lib._arraypad_impl import pad
220220
from .lib._utils_impl import (
221-
byte_bounds, show_runtime, get_include, info
221+
show_runtime, get_include, info
222222
)
223223
from .lib._stride_tricks_impl import (
224224
broadcast_arrays, broadcast_shapes, broadcast_to

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)