Delete yield_end function since yield was removed upstream

This commit is contained in:
Jason Paryani
2013-09-19 22:08:17 -07:00
parent 9678a0f5a7
commit 46049ecc36
3 changed files with 0 additions and 8 deletions

View File

@@ -42,9 +42,6 @@ cdef class EventLoop:
Py_INCREF(error_func)
return Promise()._init(async.there(self.thisptr, deref(promise.thisptr), <PyObject *>func, <PyObject *>error_func))
cpdef yield_end(self):
return Promise()._init(async.yield_end(self.thisptr))
cdef class Promise:
cdef async.PyPromise * thisptr
cdef public bint is_consumed