summaryrefslogtreecommitdiff
path: root/numpy
diff options
context:
space:
mode:
authorCharles Harris <charlesr.harris@gmail.com>2011-07-09 10:57:21 -0600
committerCharles Harris <charlesr.harris@gmail.com>2011-07-09 10:57:21 -0600
commitf35015c59cb35fc4503822ce686066b497c932e4 (patch)
tree0348251b5dde370a66f091737cd7b111663464d0 /numpy
parent98d0c8f79443bf6f44883739d1876a3dc2498f6f (diff)
downloadnumpy-f35015c59cb35fc4503822ce686066b497c932e4.tar.gz
STY: Put some spaces in.
Diffstat (limited to 'numpy')
-rw-r--r--numpy/core/tests/test_multiarray.py4
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)