summaryrefslogtreecommitdiff
path: root/venv/lib/python3.11/site-packages/uvloop/handles/idle.pxd
diff options
context:
space:
mode:
Diffstat (limited to 'venv/lib/python3.11/site-packages/uvloop/handles/idle.pxd')
-rw-r--r--venv/lib/python3.11/site-packages/uvloop/handles/idle.pxd14
1 files changed, 14 insertions, 0 deletions
diff --git a/venv/lib/python3.11/site-packages/uvloop/handles/idle.pxd b/venv/lib/python3.11/site-packages/uvloop/handles/idle.pxd
new file mode 100644
index 0000000..cf7b19f
--- /dev/null
+++ b/venv/lib/python3.11/site-packages/uvloop/handles/idle.pxd
@@ -0,0 +1,14 @@
+cdef class UVIdle(UVHandle):
+ cdef:
+ Handle h
+ bint running
+
+ # All "inline" methods are final
+
+ cdef _init(self, Loop loop, Handle h)
+
+ cdef inline stop(self)
+ cdef inline start(self)
+
+ @staticmethod
+ cdef UVIdle new(Loop loop, Handle h)