Commit 431575b4 authored by Jason Madden's avatar Jason Madden

Drop the corecext sigfd property.

parent 96b65df3
...@@ -244,6 +244,16 @@ libuv ...@@ -244,6 +244,16 @@ libuv
See :issue:`790` for history and more in-depth discussion. 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) 1.2.2 (2017-06-05)
================== ==================
......
...@@ -532,7 +532,6 @@ cdef public class loop [object PyGeventLoopObject, type PyGeventLoop_Type]: ...@@ -532,7 +532,6 @@ cdef public class loop [object PyGeventLoopObject, type PyGeventLoop_Type]:
def _format_details(self): def _format_details(self):
cdef str msg = '' cdef str msg = ''
cdef object fileno = self.fileno() cdef object fileno = self.fileno()
cdef object sigfd = None
cdef object activecnt = None cdef object activecnt = None
try: try:
sigfd = self.sigfd sigfd = self.sigfd
...@@ -546,8 +545,6 @@ cdef public class loop [object PyGeventLoopObject, type PyGeventLoop_Type]: ...@@ -546,8 +545,6 @@ cdef public class loop [object PyGeventLoopObject, type PyGeventLoop_Type]:
msg += ' ref=' + repr(activecnt) msg += ' ref=' + repr(activecnt)
if fileno is not None: if fileno is not None:
msg += ' fileno=' + repr(fileno) msg += ' fileno=' + repr(fileno)
if sigfd is not None and sigfd != -1:
msg += ' sigfd=' + repr(sigfd)
return msg return msg
def fileno(self): def fileno(self):
...@@ -567,15 +564,6 @@ cdef public class loop [object PyGeventLoopObject, type PyGeventLoop_Type]: ...@@ -567,15 +564,6 @@ cdef public class loop [object PyGeventLoopObject, type PyGeventLoop_Type]:
_check_loop(self) _check_loop(self)
return self._ptr.sig_pending return self._ptr.sig_pending
#if EV_USE_SIGNALFD
@property
def sigfd(self):
_check_loop(self)
return self._ptr.sigfd
#endif
@property @property
def origflags(self): def origflags(self):
_check_loop(self) _check_loop(self)
......
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