PATH:
opt
/
hc_python
/
lib
/
python3.12
/
site-packages
/
greenlet
#ifndef PYGREENLET_HPP #define PYGREENLET_HPP #include "greenlet.h" #include "greenlet_compiler_compat.hpp" #include "greenlet_refs.hpp" using greenlet::refs::OwnedGreenlet; using greenlet::refs::BorrowedGreenlet; using greenlet::refs::BorrowedObject;; using greenlet::refs::OwnedObject; using greenlet::refs::PyErrPieces; // XXX: These doesn't really belong here, it's not a Python slot. static OwnedObject internal_green_throw(BorrowedGreenlet self, PyErrPieces& err_pieces); static PyGreenlet* green_new(PyTypeObject* type, PyObject* UNUSED(args), PyObject* UNUSED(kwds)); static int green_clear(PyGreenlet* self); static int green_init(PyGreenlet* self, PyObject* args, PyObject* kwargs); static int green_setparent(PyGreenlet* self, PyObject* nparent, void* UNUSED(context)); static int green_setrun(PyGreenlet* self, PyObject* nrun, void* UNUSED(context)); static int green_traverse(PyGreenlet* self, visitproc visit, void* arg); static void green_dealloc(PyGreenlet* self); static PyObject* green_getparent(PyGreenlet* self, void* UNUSED(context)); static int green_is_gc(PyObject* self); static PyObject* green_getdead(PyGreenlet* self, void* UNUSED(context)); static PyObject* green_getrun(PyGreenlet* self, void* UNUSED(context)); static int green_setcontext(PyGreenlet* self, PyObject* nctx, void* UNUSED(context)); static PyObject* green_getframe(PyGreenlet* self, void* UNUSED(context)); static PyObject* green_repr(PyGreenlet* self); #endif
[-] TGreenlet.hpp
[edit]
[+]
tests
[-] PyGreenlet.hpp
[edit]
[-] TExceptionState.cpp
[edit]
[-] PyGreenlet.cpp
[edit]
[+]
..
[+]
__pycache__
[-] CObjects.cpp
[edit]
[-] TStackState.cpp
[edit]
[-] greenlet_allocator.hpp
[edit]
[-] greenlet_slp_switch.hpp
[edit]
[-] greenlet.cpp
[edit]
[-] greenlet_msvc_compat.hpp
[edit]
[-] TMainGreenlet.cpp
[edit]
[-] TBrokenGreenlet.cpp
[edit]
[-] PyGreenletUnswitchable.cpp
[edit]
[-] TThreadStateDestroy.cpp
[edit]
[-] greenlet_thread_support.hpp
[edit]
[-] greenlet.h
[edit]
[-] slp_platformselect.h
[edit]
[-] greenlet_internal.hpp
[edit]
[-] TGreenletGlobals.cpp
[edit]
[-] TPythonState.cpp
[edit]
[-] __init__.py
[edit]
[-] greenlet_cpython_compat.hpp
[edit]
[-] TGreenlet.cpp
[edit]
[-] TThreadStateCreator.hpp
[edit]
[+]
platform
[-] PyModule.cpp
[edit]
[-] _greenlet.cpython-312-x86_64-linux-gnu.so
[edit]
[-] greenlet_refs.hpp
[edit]
[-] TThreadState.hpp
[edit]
[-] greenlet_compiler_compat.hpp
[edit]
[-] TUserGreenlet.cpp
[edit]
[-] greenlet_exceptions.hpp
[edit]