Commit 77462ffb authored by Denis Bilenko's avatar Denis Bilenko

remove loop.fork() to loop.reinit() (need "fork" for fork watchers)

parent b42cca94
...@@ -284,7 +284,7 @@ cdef public class loop [object PyGeventLoopObject, type PyGeventLoop_Type]: ...@@ -284,7 +284,7 @@ cdef public class loop [object PyGeventLoopObject, type PyGeventLoop_Type]:
with nogil: with nogil:
libev.ev_run(self._ptr, flags) libev.ev_run(self._ptr, flags)
def fork(self): def reinit(self):
libev.ev_loop_fork(self._ptr) libev.ev_loop_fork(self._ptr)
def ref(self): def ref(self):
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment