diff options
Diffstat (limited to 'numpy/f2py/lib/python_wrapper.py')
-rw-r--r-- | numpy/f2py/lib/python_wrapper.py | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/numpy/f2py/lib/python_wrapper.py b/numpy/f2py/lib/python_wrapper.py index 6f7500b1e..7f73d6fbb 100644 --- a/numpy/f2py/lib/python_wrapper.py +++ b/numpy/f2py/lib/python_wrapper.py @@ -7,10 +7,6 @@ import sys from parser.api import * -#from block_statements import * -#from typedecl_statements import intrinsic_type_spec, Character -#from utils import CHAR_BIT - from wrapper_base import * class PythonWrapperModule(WrapperBase): @@ -65,8 +61,6 @@ PyMODINIT_FUNC init%(modulename)s(void) { def __init__(self, modulename): WrapperBase.__init__(self) self.modulename = modulename - #self.include_list = [] - #self.cppmacro_list = [] self.header_list = [] self.typedef_list = [] @@ -80,11 +74,6 @@ PyMODINIT_FUNC init%(modulename)s(void) { self.fortran_code_list = [] - #self.defined_types = [] - #self.defined_macros = [] - #self.defined_c_functions = [] - #self.defined_typedefs = [] - self.list_names = ['header', 'typedef', 'extern', 'objdecl', 'c_code','capi_code','module_method','module_init', 'fortran_code'] |