Commit 4a8aae6d authored by Denis Bilenko's avatar Denis Bilenko

core.ppyx: the 'origflags' property is only available in LIBEV_EMBED mode

parent d4a09ba1
......@@ -398,16 +398,6 @@ cdef public class loop [object PyGeventLoopObject, type PyGeventLoop_Type]:
return value
return backend
property origflags:
def __get__(self):
return _flags_to_list(self._ptr.origflags)
property origflags_int:
def __get__(self):
return self._ptr.origflags
def io(self, int fd, int events, ref=True):
return io(self, fd, events, ref)
......@@ -485,6 +475,16 @@ cdef public class loop [object PyGeventLoopObject, type PyGeventLoop_Type]:
LOOP_PROPERTY(sigfd)
#endif
property origflags:
def __get__(self):
return _flags_to_list(self._ptr.origflags)
property origflags_int:
def __get__(self):
return self._ptr.origflags
#endif
......
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