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

@@ -33,10 +33,6 @@ PyObject * wrapPyFunc(PyObject * func, PyObject * arg) {
, [error_func](kj::Exception arg) { return wrapPyFunc(error_func, wrap_kj_exception(arg)); } );
}
::kj::Promise<PyObject *> yield_end(kj::EventLoop & loop) {
return loop.there(loop.yield(), []() { Py_RETURN_NONE; } );
}
// class PyEventLoop final: public ::kj::EventLoop {
// public:
// PyEventLoop() {}