diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2010-04-25 04:31:03 +0000 |
---|---|---|
committer | Charles Harris <charlesr.harris@gmail.com> | 2010-04-25 04:31:03 +0000 |
commit | e8699dd5cd3e018250393d989aa1146d89ad9b72 (patch) | |
tree | aac80fa242cd91b386c1d59b09171396e6add01f /numpy/core/src/scalarmathmodule.c.src | |
parent | 42c74d784350830cf14bbea0419924d4d88559f7 (diff) | |
download | numpy-e8699dd5cd3e018250393d989aa1146d89ad9b72.tar.gz |
ENH: Remove some unused variable warnings.
Diffstat (limited to 'numpy/core/src/scalarmathmodule.c.src')
-rw-r--r-- | numpy/core/src/scalarmathmodule.c.src | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/numpy/core/src/scalarmathmodule.c.src b/numpy/core/src/scalarmathmodule.c.src index 5ab720bb0..d5475a30b 100644 --- a/numpy/core/src/scalarmathmodule.c.src +++ b/numpy/core/src/scalarmathmodule.c.src @@ -1490,10 +1490,8 @@ PyMODINIT_FUNC initscalarmath(void) #endif { - PyObject *m; - #if defined(NPY_PY3K) - m = PyModule_Create(&moduledef); + PyObject *m = PyModule_Create(&moduledef); if (!m) { return NULL; } |