Commit 7e2a1bae authored by Denis Bilenko's avatar Denis Bilenko

comment out child() method and 'child' class

parent 3b193447
......@@ -9,8 +9,7 @@
DEFINE_CALLBACK(idle, Idle); \
DEFINE_CALLBACK(prepare, Prepare); \
DEFINE_CALLBACK(fork, Fork); \
DEFINE_CALLBACK(async, Async); \
DEFINE_CALLBACK(child, Child);
DEFINE_CALLBACK(async, Async);
DEFINE_CALLBACKS
......
......@@ -379,8 +379,8 @@ cdef public class loop [object PyGeventLoopObject, type PyGeventLoop_Type]:
def async(self):
return async(self)
def child(self, int pid, bint trace=0):
return child(self, pid, trace)
#def child(self, int pid, bint trace=0):
# return child(self, pid, trace)
def callback(self):
return callback(self)
......@@ -591,12 +591,11 @@ cdef public class async(watcher) [object PyGeventAsyncObject, type PyGeventAsync
INIT(async)
cdef public class child(watcher) [object PyGeventChildObject, type PyGeventChild_Type]:
WATCHER(child)
INIT(child, ``, int pid, bint trace=0'', ``, pid, trace'')
#cdef public class child(watcher) [object PyGeventChildObject, type PyGeventChild_Type]:
#
# WATCHER(child)
#
# INIT(child, ``, int pid, bint trace=0'', ``, pid, trace'')
cdef public class callback(watcher) [object PyGeventCallbackObject, type PyGeventCallback_Type]:
......
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