diff options
author | cookedm <cookedm@localhost> | 2006-06-10 01:46:34 +0000 |
---|---|---|
committer | cookedm <cookedm@localhost> | 2006-06-10 01:46:34 +0000 |
commit | de1dedc34a2ec31c35a108b9d558484e81c17bb1 (patch) | |
tree | a25e3fd19d375aade79965e4a9c7f2f40312ced9 /numpy/random/old.py | |
parent | 6768d24e4709c080d0ed5c7dca1f36f759fa8ba2 (diff) | |
download | numpy-de1dedc34a2ec31c35a108b9d558484e81c17bb1.tar.gz |
Fix syntax error in numpy/random/old.py: can't use import * in functions anymore
Diffstat (limited to 'numpy/random/old.py')
-rw-r--r-- | numpy/random/old.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/numpy/random/old.py b/numpy/random/old.py index 338779ac8..414dc5215 100644 --- a/numpy/random/old.py +++ b/numpy/random/old.py @@ -196,7 +196,6 @@ def mean_var_test(x, type, mean, var, skew=[]): print "Skewness of those random numbers (should be about ", skew, "):", x_skew def test(): - from types import * obj = mt.get_state() mt.set_state(obj) obj2 = mt.get_state() |