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
64578063
Commit
64578063
authored
Nov 09, 2012
by
Denis Bilenko
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix compilation warnings
parent
9bf4b495
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
gevent/callbacks.c
gevent/callbacks.c
+1
-1
gevent/core.ppyx
gevent/core.ppyx
+1
-1
No files found.
gevent/callbacks.c
View file @
64578063
...
...
@@ -160,7 +160,7 @@ static void gevent_call(struct PyGeventLoopObject* loop, struct PyGeventCallback
Py_DECREF
(
result
);
}
else
{
gevent_handle_error
(
loop
,
cb
);
gevent_handle_error
(
loop
,
(
PyObject
*
)
cb
);
}
Py_INCREF
(
Py_None
);
...
...
gevent/core.ppyx
View file @
64578063
...
...
@@ -30,7 +30,7 @@ cdef extern from "callbacks.h":
void gevent_callback_stat(libev.ev_loop, void*, int)
void gevent_run_callbacks(libev.ev_loop, void*, int)
void gevent_periodic_signal_check(libev.ev_loop, void*, int)
void gevent_call(
object, object
)
void gevent_call(
loop, callback
)
cdef extern from *:
int errno
...
...
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