diff options
author | Tyler Reddy <tyler.je.reddy@gmail.com> | 2018-10-29 14:40:20 -0700 |
---|---|---|
committer | Tyler Reddy <tyler.je.reddy@gmail.com> | 2018-10-29 14:40:20 -0700 |
commit | 4e98265768888417018b442d47b9fdfffe13850f (patch) | |
tree | 50de71275812255b880131761008b74c2e8bea5c /numpy/f2py/src/test | |
parent | e726c045c72833d5c826e8a13f889746ee0bfdf4 (diff) | |
download | numpy-4e98265768888417018b442d47b9fdfffe13850f.tar.gz |
MAINT: removed unused vars in f2py test code
Diffstat (limited to 'numpy/f2py/src/test')
-rw-r--r-- | numpy/f2py/src/test/foomodule.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/numpy/f2py/src/test/foomodule.c b/numpy/f2py/src/test/foomodule.c index d7ecc2519..733fab0be 100644 --- a/numpy/f2py/src/test/foomodule.c +++ b/numpy/f2py/src/test/foomodule.c @@ -116,8 +116,6 @@ static PyMethodDef foo_module_methods[] = { void initfoo() { int i; PyObject *m, *d, *s; - PyTypeObject *t; - PyObject *f; import_array(); m = Py_InitModule("foo", foo_module_methods); |