[pypy-commit] pypy numpypy-array_prepare_-array_wrap: Fix typo

rguillebert noreply at buildbot.pypy.org
Thu Oct 17 18:22:34 CEST 2013


Author: Romain Guillebert <romain.py at gmail.com>
Branch: numpypy-array_prepare_-array_wrap
Changeset: r67463:4b9adb9cb0db
Date: 2013-10-17 18:21 +0200
http://bitbucket.org/pypy/pypy/changeset/4b9adb9cb0db/

Log:	Fix typo

diff --git a/pypy/module/micronumpy/interp_ufuncs.py b/pypy/module/micronumpy/interp_ufuncs.py
--- a/pypy/module/micronumpy/interp_ufuncs.py
+++ b/pypy/module/micronumpy/interp_ufuncs.py
@@ -357,7 +357,7 @@
         elif name == 'logical_or':
             self.done_func = done_if_true
         else:
-            self.done_func = Non
+            self.done_func = None
 
     def are_common_types(self, dtype1, dtype2):
         if dtype1.is_complex_type() and dtype2.is_complex_type():


More information about the pypy-commit mailing list