diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2015-11-06 17:46:42 -0700 |
---|---|---|
committer | Charles Harris <charlesr.harris@gmail.com> | 2015-11-07 11:31:33 -0700 |
commit | 1e17e2d7d176eb97157e3f613425ef746df56ed1 (patch) | |
tree | a5066f49d2e3b54c9b65cd07291893866280ed04 /numpy/ma/extras.py | |
parent | 7f53768b8ff70d4eaf03198c283a8eebdd9281ee (diff) | |
download | numpy-1e17e2d7d176eb97157e3f613425ef746df56ed1.tar.gz |
STY: Minor style fixups.
Fix some long lines and indentation in numpy/ma/core.py and
numpy/ma/extras.py
Diffstat (limited to 'numpy/ma/extras.py')
-rw-r--r-- | numpy/ma/extras.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/numpy/ma/extras.py b/numpy/ma/extras.py index ae4e0cee5..c4473b498 100644 --- a/numpy/ma/extras.py +++ b/numpy/ma/extras.py @@ -1073,7 +1073,8 @@ def dot(a, b, strict=False): fill_value = 999999) """ - #!!!: Works only with 2D arrays. There should be a way to get it to run with higher dimension + # !!!: Works only with 2D arrays. There should be a way to get it to run + # with higher dimension if strict and (a.ndim == 2) and (b.ndim == 2): a = mask_rows(a) b = mask_cols(b) |