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
7a24cc11
Commit
7a24cc11
authored
Jan 23, 2018
by
Jason Madden
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Go back to caching the watcher pointer.
parent
38451247
Changes
2
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
67 additions
and
77 deletions
+67
-77
src/gevent/libev/corecext.ppyx
src/gevent/libev/corecext.ppyx
+67
-60
src/gevent/python.pxd
src/gevent/python.pxd
+0
-17
No files found.
src/gevent/libev/corecext.ppyx
View file @
7a24cc11
This diff is collapsed.
Click to expand it.
src/gevent/python.pxd
deleted
100644 → 0
View file @
38451247
cdef
extern
from
"Python.h"
:
struct
PyObject
:
pass
ctypedef
PyObject
*
PyObjectPtr
"PyObject*"
void
Py_INCREF
(
PyObjectPtr
)
void
Py_DECREF
(
PyObjectPtr
)
void
Py_XDECREF
(
PyObjectPtr
)
int
Py_ReprEnter
(
PyObjectPtr
)
void
Py_ReprLeave
(
PyObjectPtr
)
int
PyCallable_Check
(
PyObjectPtr
)
cdef
extern
from
"frameobject.h"
:
ctypedef
struct
PyThreadState
:
PyObjectPtr
exc_type
PyObjectPtr
exc_value
PyObjectPtr
exc_traceback
PyThreadState
*
PyThreadState_GET
()
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