summaryrefslogtreecommitdiff
path: root/numpy/oldnumeric/random_array.py
diff options
context:
space:
mode:
authorTravis Oliphant <oliphant@enthought.com>2006-08-25 22:14:06 +0000
committerTravis Oliphant <oliphant@enthought.com>2006-08-25 22:14:06 +0000
commit28e44d3bbe831956a10064de2b76298316dc7cf5 (patch)
tree7df1e184931be7e8680bbac448805a2947d5bd36 /numpy/oldnumeric/random_array.py
parent1bc555d8e56339777bcb31cc323e619c00cfff51 (diff)
downloadnumpy-28e44d3bbe831956a10064de2b76298316dc7cf5.tar.gz
Fix a problem with __all__ not being copied in oldnumeric.
Diffstat (limited to 'numpy/oldnumeric/random_array.py')
-rw-r--r--numpy/oldnumeric/random_array.py10
1 files changed, 6 insertions, 4 deletions
diff --git a/numpy/oldnumeric/random_array.py b/numpy/oldnumeric/random_array.py
index 061465d02..c5d163196 100644
--- a/numpy/oldnumeric/random_array.py
+++ b/numpy/oldnumeric/random_array.py
@@ -1,9 +1,11 @@
# Backward compatible module for RandomArray
-__all__ = ['ArgumentError','F','beta','binomial','chi_square', 'exponential', 'gamma', 'get_seed',
- 'mean_var_test', 'multinomial', 'multivariate_normal', 'negative_binomial',
- 'noncentral_F', 'noncentral_chi_square', 'normal', 'permutation', 'poisson', 'randint',
- 'random', 'random_integers', 'seed', 'standard_normal', 'uniform']
+__all__ = ['ArgumentError','F','beta','binomial','chi_square', 'exponential',
+ 'gamma', 'get_seed', 'mean_var_test', 'multinomial',
+ 'multivariate_normal', 'negative_binomial', 'noncentral_F',
+ 'noncentral_chi_square', 'normal', 'permutation', 'poisson',
+ 'randint', 'random', 'random_integers', 'seed', 'standard_normal',
+ 'uniform']
ArgumentError = ValueError