diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2011-07-09 10:57:21 -0600 |
---|---|---|
committer | Charles Harris <charlesr.harris@gmail.com> | 2011-07-09 10:57:21 -0600 |
commit | f35015c59cb35fc4503822ce686066b497c932e4 (patch) | |
tree | 0348251b5dde370a66f091737cd7b111663464d0 | |
parent | 98d0c8f79443bf6f44883739d1876a3dc2498f6f (diff) | |
download | numpy-f35015c59cb35fc4503822ce686066b497c932e4.tar.gz |
STY: Put some spaces in.
-rw-r--r-- | numpy/core/tests/test_multiarray.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/numpy/core/tests/test_multiarray.py b/numpy/core/tests/test_multiarray.py index 72b960d10..6821fbe49 100644 --- a/numpy/core/tests/test_multiarray.py +++ b/numpy/core/tests/test_multiarray.py @@ -1021,8 +1021,8 @@ class TestClip(TestCase): class TestPutmask(object): - def tst_basic(self,x,T,mask,val): - np.putmask(x,mask,val) + def tst_basic(self, x, T, mask, val): + np.putmask(x, mask, val) assert_(np.all(x[mask] == T(val))) assert_(x.dtype == T) |