summaryrefslogtreecommitdiff
path: root/numpy/random/old.py
diff options
context:
space:
mode:
authorcookedm <cookedm@localhost>2006-06-10 01:46:34 +0000
committercookedm <cookedm@localhost>2006-06-10 01:46:34 +0000
commitde1dedc34a2ec31c35a108b9d558484e81c17bb1 (patch)
treea25e3fd19d375aade79965e4a9c7f2f40312ced9 /numpy/random/old.py
parent6768d24e4709c080d0ed5c7dca1f36f759fa8ba2 (diff)
downloadnumpy-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.py1
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()