diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2018-01-18 18:08:26 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-01-18 18:08:26 -0700 |
commit | 70e34252dc224ace1192cb8534fd55442afe3dfe (patch) | |
tree | a9968ab28430f50afb94a9241220f0d254e20a2e | |
parent | 9a20329eabc9c4b8a10c1c7163de40334abde479 (diff) | |
download | numpy-70e34252dc224ace1192cb8534fd55442afe3dfe.tar.gz |
STY: Break some long lines.
[ci skip]
-rw-r--r-- | numpy/ma/tests/test_extras.py | 3 |
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]) |