Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php on line 88

Warning: Cannot modify header information - headers already sent by (output started at /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php:88) in /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php on line 215

Warning: Cannot modify header information - headers already sent by (output started at /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php:88) in /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php on line 216

Warning: Cannot modify header information - headers already sent by (output started at /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php:88) in /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php on line 217

Warning: Cannot modify header information - headers already sent by (output started at /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php:88) in /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php on line 218

Warning: Cannot modify header information - headers already sent by (output started at /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php:88) in /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php on line 219

Warning: Cannot modify header information - headers already sent by (output started at /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php:88) in /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php on line 220
#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