Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gevent
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
gevent
Commits
7e2a1bae
Commit
7e2a1bae
authored
Aug 01, 2011
by
Denis Bilenko
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
comment out child() method and 'child' class
parent
3b193447
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
10 deletions
+8
-10
gevent/callbacks.h
gevent/callbacks.h
+1
-2
gevent/core_.pyx
gevent/core_.pyx
+7
-8
No files found.
gevent/callbacks.h
View file @
7e2a1bae
...
...
@@ -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
...
...
gevent/core_.pyx
View file @
7e2a1bae
...
...
@@ -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]:
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment