diff options
Diffstat (limited to 'numpy/oldnumeric/random_array.py')
-rw-r--r-- | numpy/oldnumeric/random_array.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/numpy/oldnumeric/random_array.py b/numpy/oldnumeric/random_array.py index e8d386ce4..84e923e13 100644 --- a/numpy/oldnumeric/random_array.py +++ b/numpy/oldnumeric/random_array.py @@ -18,7 +18,7 @@ def seed(x=0, y=0): if (x == 0 or y == 0): mt.seed() else: - mt.seed((x,y)) + mt.seed((x,y)) def get_seed(): raise NotImplementedError, \ @@ -266,5 +266,3 @@ def test(): if __name__ == '__main__': test() - - |