summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCharles Harris <charlesr.harris@gmail.com>2018-01-18 18:08:26 -0700
committerGitHub <noreply@github.com>2018-01-18 18:08:26 -0700
commit70e34252dc224ace1192cb8534fd55442afe3dfe (patch)
treea9968ab28430f50afb94a9241220f0d254e20a2e
parent9a20329eabc9c4b8a10c1c7163de40334abde479 (diff)
downloadnumpy-70e34252dc224ace1192cb8534fd55442afe3dfe.tar.gz
STY: Break some long lines.
[ci skip]
-rw-r--r--numpy/ma/tests/test_extras.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/numpy/ma/tests/test_extras.py b/numpy/ma/tests/test_extras.py
index 83bac881f..d1c1aa63e 100644
--- a/numpy/ma/tests/test_extras.py
+++ b/numpy/ma/tests/test_extras.py
@@ -1511,7 +1511,8 @@ class TestArraySetOps(object):
control = array([1, 2, 3, 4, 5, 7, -1], mask=[0, 0, 0, 0, 0, 0, 1])
assert_equal(test, control)
- # Tests gh-10340, arguments to union1d should be flattened if they are not already 1D
+ # Tests gh-10340, arguments to union1d should be
+ # flattened if they are not already 1D
x = array([[0, 1, 2], [3, 4, 5]], mask=[[0, 0, 0], [0, 0, 1]])
y = array([0, 1, 2, 3, 4], mask=[0, 0, 0, 0, 1])
ez = array([0, 1, 2, 3, 4, 5], mask=[0, 0, 0, 0, 0, 1])