aboutsummaryrefslogtreecommitdiffstats
path: root/python/gevent/__hub_primitives.pxd
diff options
context:
space:
mode:
authorJames Taylor <user234683@users.noreply.github.com>2019-09-06 16:31:13 -0700
committerJames Taylor <user234683@users.noreply.github.com>2019-09-06 16:31:13 -0700
commit3d57e14df7ba5f14a634295caf3b2e60da50bfe2 (patch)
tree4903bcb79a49ad714a1a9129765b9545405c9978 /python/gevent/__hub_primitives.pxd
parentac32b24b2a011292b704a3f27e8fd08a7ae9424b (diff)
downloadyt-local-3d57e14df7ba5f14a634295caf3b2e60da50bfe2.tar.lz
yt-local-3d57e14df7ba5f14a634295caf3b2e60da50bfe2.tar.xz
yt-local-3d57e14df7ba5f14a634295caf3b2e60da50bfe2.zip
Remove windows python distribution from repo and add requirements.txt
Diffstat (limited to 'python/gevent/__hub_primitives.pxd')
-rw-r--r--python/gevent/__hub_primitives.pxd69
1 files changed, 0 insertions, 69 deletions
diff --git a/python/gevent/__hub_primitives.pxd b/python/gevent/__hub_primitives.pxd
deleted file mode 100644
index 6d8a115..0000000
--- a/python/gevent/__hub_primitives.pxd
+++ /dev/null
@@ -1,69 +0,0 @@
-cimport cython
-
-from gevent.__greenlet_primitives cimport SwitchOutGreenletWithLoop
-from gevent.__hub_local cimport get_hub_noargs as get_hub
-
-from gevent.__waiter cimport Waiter
-from gevent.__waiter cimport MultipleWaiter
-
-cdef InvalidSwitchError
-cdef _waiter
-cdef _greenlet_primitives
-cdef traceback
-cdef _timeout_error
-cdef Timeout
-
-
-cdef extern from "greenlet/greenlet.h":
-
- ctypedef class greenlet.greenlet [object PyGreenlet]:
- pass
-
- # These are actually macros and so much be included
- # (defined) in each .pxd, as are the two functions
- # that call them.
- greenlet PyGreenlet_GetCurrent()
- void PyGreenlet_Import()
-
-@cython.final
-cdef inline greenlet getcurrent():
- return PyGreenlet_GetCurrent()
-
-cdef bint _greenlet_imported
-
-cdef inline void greenlet_init():
- global _greenlet_imported
- if not _greenlet_imported:
- PyGreenlet_Import()
- _greenlet_imported = True
-
-
-cdef class WaitOperationsGreenlet(SwitchOutGreenletWithLoop):
-
- cpdef wait(self, watcher)
- cpdef cancel_wait(self, watcher, error, close_watcher=*)
- cpdef _cancel_wait(self, watcher, error, close_watcher)
-
-cdef class _WaitIterator:
- cdef SwitchOutGreenletWithLoop _hub
- cdef MultipleWaiter _waiter
- cdef _switch
- cdef _timeout
- cdef _objects
- cdef _timer
- cdef Py_ssize_t _count
- cdef bint _begun
-
-
-
- cdef _cleanup(self)
-
-cpdef iwait_on_objects(objects, timeout=*, count=*)
-cpdef wait_on_objects(objects=*, timeout=*, count=*)
-
-cdef _primitive_wait(watcher, timeout, timeout_exc, WaitOperationsGreenlet hub)
-cpdef wait_on_watcher(watcher, timeout=*, timeout_exc=*, WaitOperationsGreenlet hub=*)
-cpdef wait_read(fileno, timeout=*, timeout_exc=*)
-cpdef wait_write(fileno, timeout=*, timeout_exc=*, event=*)
-cpdef wait_readwrite(fileno, timeout=*, timeout_exc=*, event=*)
-cpdef wait_on_socket(socket, watcher, timeout_exc=*)