diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2008-11-22 08:01:26 +0000 |
---|---|---|
committer | Charles Harris <charlesr.harris@gmail.com> | 2008-11-22 08:01:26 +0000 |
commit | 0cb27e398522fdbfed7ed974538ad6d24347c10a (patch) | |
tree | 21fecc2a672cd590e4ba9d4756b6f00d0b899d7a | |
parent | bc42c6b084f9b596d7a35a417b3a3bb6f2ef55e0 (diff) | |
download | numpy-0cb27e398522fdbfed7ed974538ad6d24347c10a.tar.gz |
Comment out redundant variable declaration for time being.
-rw-r--r-- | numpy/core/src/umathmodule.c.src | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/numpy/core/src/umathmodule.c.src b/numpy/core/src/umathmodule.c.src index afbe846ae..a5557042f 100644 --- a/numpy/core/src/umathmodule.c.src +++ b/numpy/core/src/umathmodule.c.src @@ -160,7 +160,8 @@ pzero_init(void) } /* Setup the umath module */ -static PyTypeObject PyUFunc_Type; +/* Remove for time being, it is declared in __ufunc_api.h */ +/*static PyTypeObject PyUFunc_Type;*/ static struct PyMethodDef methods[] = { {"frompyfunc", (PyCFunction) ufunc_frompyfunc, |