From 28e44d3bbe831956a10064de2b76298316dc7cf5 Mon Sep 17 00:00:00 2001 From: Travis Oliphant Date: Fri, 25 Aug 2006 22:14:06 +0000 Subject: Fix a problem with __all__ not being copied in oldnumeric. --- numpy/oldnumeric/random_array.py | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) (limited to 'numpy/oldnumeric/random_array.py') 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 -- cgit v1.2.1