From dea664f86f0f24f0f999945e20f9b2042d6b159c Mon Sep 17 00:00:00 2001 From: Jarrod Millman Date: Mon, 29 Oct 2007 08:33:07 +0000 Subject: fixed typo --- numpy/oldnumeric/random_array.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'numpy/oldnumeric/random_array.py') diff --git a/numpy/oldnumeric/random_array.py b/numpy/oldnumeric/random_array.py index 2f5479c1f..94c54603f 100644 --- a/numpy/oldnumeric/random_array.py +++ b/numpy/oldnumeric/random_array.py @@ -117,7 +117,7 @@ def gamma(a, r, shape=[]): def F(dfn, dfd, shape=[]): """F(dfn, dfd) or F(dfn, dfd, [n, m, ...]) returns array of F distributed random numbers with dfn degrees of freedom in the numerator and dfd degrees of freedom in the denominator.""" if shape == []: - shape == None + shape = None return mt.f(dfn, dfd, shape) def noncentral_F(dfn, dfd, nconc, shape=[]): -- cgit v1.2.1