summaryrefslogtreecommitdiff
path: root/numpy/core
diff options
context:
space:
mode:
authorStefan van der Walt <stefan@sun.ac.za>2007-08-29 15:46:21 +0000
committerStefan van der Walt <stefan@sun.ac.za>2007-08-29 15:46:21 +0000
commit10a6b61250f55dae30aabe9fc1463781bdcee64d (patch)
treee21412ee441f655ce92768e7088e903b4a145aed /numpy/core
parentea0c782d7faabf0bbf928475c57f462cbffa07c5 (diff)
downloadnumpy-10a6b61250f55dae30aabe9fc1463781bdcee64d.tar.gz
Remove another generator.
Diffstat (limited to 'numpy/core')
-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 315f9ac21..c31c298bc 100644
--- a/numpy/core/tests/test_multiarray.py
+++ b/numpy/core/tests/test_multiarray.py
@@ -435,8 +435,8 @@ class test_putmask(ParametricTestCase):
tests = []
for val in [-100,0,15]:
for types in N.sctypes.itervalues():
- tests.extend((self.tst_basic,x.copy().astype(T),T,mask,val)
- for T in types if T not in unchecked_types)
+ tests.extend([(self.tst_basic,x.copy().astype(T),T,mask,val)
+ for T in types if T not in unchecked_types])
return tests
def test_mask_size(self):