Matt300209's picture
Add files using upload-large-folder tool
948620a verified
# We declare these parser functions here to pass a C function type around.
# FIXME: do this in Python notation.
from .Scanning cimport PyrexScanner
ctypedef object (*p_sub_expr_func)(PyrexScanner obj)
cdef p_binop_expr(PyrexScanner s, ops, p_sub_expr_func p_sub_expr)
cdef p_rassoc_binop_expr(PyrexScanner s, unicode op, p_sub_expr_func p_subexpr)