Commit 2addc9aa authored by Stefan Behnel's avatar Stefan Behnel

remove UtilityCodeBase from Code.pxd - no need to "optimise" it since all...

remove UtilityCodeBase from Code.pxd - no need to "optimise" it since all subclasses are currently Python classes
parent 9c80b381
cimport cython cimport cython
cdef class UtilityCodeBase(object): #cdef class UtilityCodeBase(object):
cdef public object name # cdef public object name
cdef public object proto # cdef public object proto
cdef public object impl # cdef public object impl
cdef public object init # cdef public object init
cdef public object cleanup # cdef public object cleanup
cdef public object requires # cdef public object requires
cdef public dict _cache # cdef public dict _cache
cdef public list specialize_list # cdef public list specialize_list
cdef public object proto_block # cdef public object proto_block
cdef public object file # cdef public object file
#
cpdef format_code(self, code_string, replace_empty_lines=*) # cpdef format_code(self, code_string, replace_empty_lines=*)
cdef class FunctionState: cdef class FunctionState:
cdef public set names_taken cdef public set names_taken
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment