File size: 351 Bytes
948620a |
1 2 3 4 5 6 7 8 9 10 |
# 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)
|