StringIOTree.pxd 446 B

1234567891011121314151617
  1. cimport cython
  2. cdef class StringIOTree:
  3. cdef public list prepended_children
  4. cdef public object stream
  5. cdef public object write
  6. cdef public list markers
  7. @cython.locals(x=StringIOTree)
  8. cpdef getvalue(self)
  9. @cython.locals(child=StringIOTree)
  10. cpdef copyto(self, target)
  11. cpdef commit(self)
  12. #def insert(self, iotree)
  13. #def insertion_point(self)
  14. @cython.locals(c=StringIOTree)
  15. cpdef allmarkers(self)