summaryrefslogtreecommitdiff
path: root/Cython/Compiler/Code.pxd
diff options
context:
space:
mode:
Diffstat (limited to 'Cython/Compiler/Code.pxd')
-rw-r--r--Cython/Compiler/Code.pxd6
1 files changed, 6 insertions, 0 deletions
diff --git a/Cython/Compiler/Code.pxd b/Cython/Compiler/Code.pxd
index e17e0fb1d..4601474b2 100644
--- a/Cython/Compiler/Code.pxd
+++ b/Cython/Compiler/Code.pxd
@@ -54,6 +54,7 @@ cdef class FunctionState:
cdef public object closure_temps
cdef public bint should_declare_error_indicator
cdef public bint uses_error_indicator
+ cdef public bint error_without_exception
@cython.locals(n=size_t)
cpdef new_label(self, name=*)
@@ -109,6 +110,9 @@ cdef class CCodeWriter(object):
cdef bint bol
cpdef write(self, s)
+ @cython.final
+ cdef _write_lines(self, s)
+ cpdef _write_to_buffer(self, s)
cpdef put(self, code)
cpdef put_safe(self, code)
cpdef putln(self, code=*, bint safe=*)
@@ -116,6 +120,8 @@ cdef class CCodeWriter(object):
cdef increase_indent(self)
@cython.final
cdef decrease_indent(self)
+ @cython.final
+ cdef indent(self)
cdef class PyrexCodeWriter: