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
431575b4
Commit
431575b4
authored
Jan 22, 2018
by
Jason Madden
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Drop the corecext sigfd property.
parent
96b65df3
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
12 deletions
+10
-12
CHANGES.rst
CHANGES.rst
+10
-0
src/gevent/libev/corecext.ppyx
src/gevent/libev/corecext.ppyx
+0
-12
No files found.
CHANGES.rst
View file @
431575b4
...
...
@@ -244,6 +244,16 @@ libuv
See :issue:`790` for history and more in-depth discussion.
libev
-----
- The C extension has been updated to use more modern Cython idioms
and generate less code for simplicity, faster compilation and better
cache usage.
- The ``sigfd`` property that was only conditionally available on
certain platforms and when libev was embedded, and only in the C
implementation, not the CFFI implementation, has been removed.
1.2.2 (2017-06-05)
==================
...
...
src/gevent/libev/corecext.ppyx
View file @
431575b4
...
...
@@ -532,7 +532,6 @@ cdef public class loop [object PyGeventLoopObject, type PyGeventLoop_Type]:
def _format_details(self):
cdef str msg = ''
cdef object fileno = self.fileno()
cdef object sigfd = None
cdef object activecnt = None
try:
sigfd = self.sigfd
...
...
@@ -546,8 +545,6 @@ cdef public class loop [object PyGeventLoopObject, type PyGeventLoop_Type]:
msg += ' ref=' + repr(activecnt)
if fileno is not None:
msg += ' fileno=' + repr(fileno)
if sigfd is not None and sigfd != -1:
msg += ' sigfd=' + repr(sigfd)
return msg
def fileno(self):
...
...
@@ -567,15 +564,6 @@ cdef public class loop [object PyGeventLoopObject, type PyGeventLoop_Type]:
_check_loop(self)
return self._ptr.sig_pending
#if EV_USE_SIGNALFD
@property
def sigfd(self):
_check_loop(self)
return self._ptr.sigfd
#endif
@property
def origflags(self):
_check_loop(self)
...
...
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