✘✘ GRAYBYTE WORDPRESS FILE MANAGER ✘✘

​🇳​​🇦​​🇲​​🇪♯➤ cp240.webserver.pt ​🇻​♯➤ 4.18.0-553.121.1.lve.el8.x86_64 #1 SMP 🇾​♯➤ 2026

𝗛𝗢𝗠𝗘 𝗜𝗗 ♯➤ 62.193.192.154 ♯➤ 𝗔𝗗𝗠𝗜𝗡 𝗜𝗗 216.73.216.64
𝗢𝗣𝗧𝗜𝗢𝗡𝗦 ♯ CRL ♯➤ 𝗢𝗞 ┃ WGT ♯➤ 𝗢𝗞 ┃ SDO ♯➤ 𝗢𝗙𝗙 ┃ PKEX ♯➤ 𝗢𝗙𝗙
𝗗𝗘𝗔𝗖𝗧𝗜𝗩𝗔𝗧𝗘𝗗 ♯➤ 𝗔𝗟𝗟 𝗪𝗢𝗥𝗞𝗜𝗡𝗚....

𝗛𝗢𝗠𝗘
𝗖𝗨𝗥𝗥𝗘𝗡𝗧 𝗙𝗜𝗟𝗘 : /usr/include/python3.6m//moduleobject.h
/* Module object interface */

#ifndef Py_MODULEOBJECT_H
#define Py_MODULEOBJECT_H
#ifdef __cplusplus
extern "C" {
#endif

PyAPI_DATA(PyTypeObject) PyModule_Type;

#define PyModule_Check(op) PyObject_TypeCheck(op, &PyModule_Type)
#define PyModule_CheckExact(op) (Py_TYPE(op) == &PyModule_Type)

#if !defined(Py_LIMITED_API) || Py_LIMITED_API+0 >= 0x03030000
PyAPI_FUNC(PyObject *) PyModule_NewObject(
    PyObject *name
    );
#endif
PyAPI_FUNC(PyObject *) PyModule_New(
    const char *name            /* UTF-8 encoded string */
    );
PyAPI_FUNC(PyObject *) PyModule_GetDict(PyObject *);
#if !defined(Py_LIMITED_API) || Py_LIMITED_API+0 >= 0x03030000
PyAPI_FUNC(PyObject *) PyModule_GetNameObject(PyObject *);
#endif
PyAPI_FUNC(const char *) PyModule_GetName(PyObject *);
PyAPI_FUNC(const char *) PyModule_GetFilename(PyObject *);
PyAPI_FUNC(PyObject *) PyModule_GetFilenameObject(PyObject *);
#ifndef Py_LIMITED_API
PyAPI_FUNC(void) _PyModule_Clear(PyObject *);
PyAPI_FUNC(void) _PyModule_ClearDict(PyObject *);
#endif
PyAPI_FUNC(struct PyModuleDef*) PyModule_GetDef(PyObject*);
PyAPI_FUNC(void*) PyModule_GetState(PyObject*);

#if !defined(Py_LIMITED_API) || Py_LIMITED_API+0 >= 0x03050000
/* New in 3.5 */
PyAPI_FUNC(PyObject *) PyModuleDef_Init(struct PyModuleDef*);
PyAPI_DATA(PyTypeObject) PyModuleDef_Type;
#endif

typedef struct PyModuleDef_Base {
  PyObject_HEAD
  PyObject* (*m_init)(void);
  Py_ssize_t m_index;
  PyObject* m_copy;
} PyModuleDef_Base;

#define PyModuleDef_HEAD_INIT { \
    PyObject_HEAD_INIT(NULL)    \
    NULL, /* m_init */          \
    0,    /* m_index */         \
    NULL, /* m_copy */          \
  }

struct PyModuleDef_Slot;
#if !defined(Py_LIMITED_API) || Py_LIMITED_API+0 >= 0x03050000
/* New in 3.5 */
typedef struct PyModuleDef_Slot{
    int slot;
    void *value;
} PyModuleDef_Slot;

#define Py_mod_create 1
#define Py_mod_exec 2

#ifndef Py_LIMITED_API
#define _Py_mod_LAST_SLOT 2
#endif

#endif /* New in 3.5 */

typedef struct PyModuleDef{
  PyModuleDef_Base m_base;
  const char* m_name;
  const char* m_doc;
  Py_ssize_t m_size;
  PyMethodDef *m_methods;
  struct PyModuleDef_Slot* m_slots;
  traverseproc m_traverse;
  inquiry m_clear;
  freefunc m_free;
} PyModuleDef;

#ifdef __cplusplus
}
#endif
#endif /* !Py_MODULEOBJECT_H */


Current_dir [ 𝗡𝗢𝗧 𝗪𝗥𝗜𝗧𝗘𝗔𝗕𝗟𝗘 ] Document_root [ 𝗪𝗥𝗜𝗧𝗘𝗔𝗕𝗟𝗘 ]


[ Back ]
𝗡𝗔𝗠𝗘
𝗦𝗜𝗭𝗘
𝗟𝗔𝗦𝗧 𝗧𝗢𝗨𝗖𝗛
𝗨𝗦𝗘𝗥
𝗦𝗧𝗔𝗧𝗨𝗦
𝗙𝗨𝗡𝗖𝗧𝗜𝗢𝗡𝗦
..
--
4 Jun 2026 2.36 AM
root / root
0755
Python-ast.h
21.752 KB
24 Dec 2018 2.45 AM
root / root
0644
Python.h
3.146 KB
23 Dec 2018 9.37 PM
root / root
0644
_hashopenssl.h
1.333 KB
28 Apr 2026 5.46 AM
root / root
0644
abstract.h
46.339 KB
23 Dec 2018 9.37 PM
root / root
0644
accu.h
0.992 KB
23 Dec 2018 9.37 PM
root / root
0644
asdl.h
1.185 KB
23 Dec 2018 9.37 PM
root / root
0644
ast.h
0.466 KB
23 Dec 2018 9.37 PM
root / root
0644
bitset.h
0.773 KB
23 Dec 2018 9.37 PM
root / root
0644
bltinmodule.h
0.258 KB
23 Dec 2018 9.37 PM
root / root
0644
boolobject.h
0.865 KB
23 Dec 2018 9.37 PM
root / root
0644
bytearrayobject.h
2.064 KB
23 Dec 2018 9.37 PM
root / root
0644
bytes_methods.h
3.116 KB
23 Dec 2018 9.37 PM
root / root
0644
bytesobject.h
8.167 KB
23 Dec 2018 9.37 PM
root / root
0644
cellobject.h
0.685 KB
23 Dec 2018 9.37 PM
root / root
0644
ceval.h
8.324 KB
23 Dec 2018 9.37 PM
root / root
0644
classobject.h
1.627 KB
23 Dec 2018 9.37 PM
root / root
0644
code.h
5.806 KB
23 Dec 2018 9.37 PM
root / root
0644
codecs.h
6.634 KB
23 Dec 2018 9.37 PM
root / root
0644
compile.h
2.113 KB
23 Dec 2018 9.37 PM
root / root
0644
complexobject.h
1.765 KB
23 Dec 2018 9.37 PM
root / root
0644
datetime.h
9.193 KB
23 Dec 2018 9.37 PM
root / root
0644
descrobject.h
2.895 KB
23 Dec 2018 9.37 PM
root / root
0644
dictobject.h
7.01 KB
23 Dec 2018 9.37 PM
root / root
0644
dtoa.h
0.447 KB
23 Dec 2018 9.37 PM
root / root
0644
dynamic_annotations.h
21.942 KB
23 Dec 2018 9.37 PM
root / root
0644
enumobject.h
0.247 KB
23 Dec 2018 9.37 PM
root / root
0644
errcode.h
1.462 KB
23 Dec 2018 9.37 PM
root / root
0644
eval.h
0.583 KB
23 Dec 2018 9.37 PM
root / root
0644
fileobject.h
1.612 KB
23 Dec 2018 9.37 PM
root / root
0644
fileutils.h
3.441 KB
23 Dec 2018 9.37 PM
root / root
0644
floatobject.h
4.682 KB
23 Dec 2018 9.37 PM
root / root
0644
frameobject.h
3.447 KB
23 Dec 2018 9.37 PM
root / root
0644
funcobject.h
3.983 KB
23 Dec 2018 9.37 PM
root / root
0644
genobject.h
3.499 KB
23 Dec 2018 9.37 PM
root / root
0644
graminit.h
1.92 KB
23 Dec 2018 9.37 PM
root / root
0644
grammar.h
2.025 KB
23 Dec 2018 9.37 PM
root / root
0644
import.h
4.134 KB
23 Dec 2018 9.37 PM
root / root
0644
intrcheck.h
0.501 KB
23 Dec 2018 9.37 PM
root / root
0644
iterobject.h
0.554 KB
23 Dec 2018 9.37 PM
root / root
0644
listobject.h
2.832 KB
23 Dec 2018 9.37 PM
root / root
0644
longintrepr.h
3.673 KB
23 Dec 2018 9.37 PM
root / root
0644
longobject.h
9.6 KB
28 Apr 2026 5.46 AM
root / root
0644
marshal.h
0.784 KB
23 Dec 2018 9.37 PM
root / root
0644
memoryobject.h
2.7 KB
23 Dec 2018 9.37 PM
root / root
0644
metagrammar.h
0.247 KB
23 Dec 2018 9.37 PM
root / root
0644
methodobject.h
3.757 KB
23 Dec 2018 9.37 PM
root / root
0644
modsupport.h
7.146 KB
23 Dec 2018 9.37 PM
root / root
0644
moduleobject.h
2.231 KB
23 Dec 2018 9.37 PM
root / root
0644
namespaceobject.h
0.341 KB
23 Dec 2018 9.37 PM
root / root
0644
node.h
0.983 KB
23 Dec 2018 9.37 PM
root / root
0644
object.h
41.214 KB
28 Apr 2026 5.46 AM
root / root
0644
objimpl.h
13.91 KB
23 Dec 2018 9.37 PM
root / root
0644
odictobject.h
1.258 KB
23 Dec 2018 9.37 PM
root / root
0644
opcode.h
4.954 KB
23 Dec 2018 9.37 PM
root / root
0644
osdefs.h
0.675 KB
23 Dec 2018 9.37 PM
root / root
0644
osmodule.h
0.284 KB
23 Dec 2018 9.37 PM
root / root
0644
parsetok.h
2.817 KB
23 Dec 2018 9.37 PM
root / root
0644
patchlevel.h
1.102 KB
23 Dec 2018 9.37 PM
root / root
0644
pgen.h
0.247 KB
23 Dec 2018 9.37 PM
root / root
0644
pgenheaders.h
1.152 KB
23 Dec 2018 9.37 PM
root / root
0644
py_curses.h
4.206 KB
23 Dec 2018 9.37 PM
root / root
0644
pyarena.h
2.68 KB
23 Dec 2018 9.37 PM
root / root
0644
pyatomic.h
7.938 KB
23 Dec 2018 9.37 PM
root / root
0644
pycapsule.h
1.686 KB
23 Dec 2018 9.37 PM
root / root
0644
pyconfig-64.h
43.576 KB
28 Apr 2026 5.47 AM
root / root
0644
pyconfig.h
0.158 KB
28 Apr 2026 5.55 AM
root / root
0644
pyctype.h
1.289 KB
23 Dec 2018 9.37 PM
root / root
0644
pydebug.h
1.234 KB
28 Apr 2026 5.46 AM
root / root
0644
pydtrace.h
1.924 KB
23 Dec 2018 9.37 PM
root / root
0644
pyerrors.h
16.815 KB
23 Dec 2018 9.37 PM
root / root
0644
pyexpat.h
2.393 KB
23 Dec 2018 9.37 PM
root / root
0644
pyfpe.h
8.272 KB
23 Dec 2018 9.37 PM
root / root
0644
pygetopt.h
0.4 KB
23 Dec 2018 9.37 PM
root / root
0644
pyhash.h
4.042 KB
23 Dec 2018 9.37 PM
root / root
0644
pylifecycle.h
3.982 KB
23 Dec 2018 9.37 PM
root / root
0644
pymacconfig.h
2.919 KB
23 Dec 2018 9.37 PM
root / root
0644
pymacro.h
3.418 KB
23 Dec 2018 9.37 PM
root / root
0644
pymath.h
8.117 KB
23 Dec 2018 9.37 PM
root / root
0644
pymem.h
8.356 KB
23 Dec 2018 9.37 PM
root / root
0644
pyport.h
26.927 KB
23 Dec 2018 9.37 PM
root / root
0644
pystate.h
10.885 KB
23 Dec 2018 9.37 PM
root / root
0644
pystrcmp.h
0.426 KB
23 Dec 2018 9.37 PM
root / root
0644
pystrhex.h
0.483 KB
23 Dec 2018 9.37 PM
root / root
0644
pystrtod.h
1.448 KB
23 Dec 2018 9.37 PM
root / root
0644
pythonrun.h
6.623 KB
23 Dec 2018 9.37 PM
root / root
0644
pythread.h
2.922 KB
23 Dec 2018 9.37 PM
root / root
0644
pytime.h
7.431 KB
23 Dec 2018 9.37 PM
root / root
0644
rangeobject.h
0.614 KB
23 Dec 2018 9.37 PM
root / root
0644
setobject.h
3.255 KB
23 Dec 2018 9.37 PM
root / root
0644
sliceobject.h
2.427 KB
23 Dec 2018 9.37 PM
root / root
0644
structmember.h
1.971 KB
23 Dec 2018 9.37 PM
root / root
0644
structseq.h
1.321 KB
23 Dec 2018 9.37 PM
root / root
0644
symtable.h
4.877 KB
23 Dec 2018 9.37 PM
root / root
0644
sysmodule.h
1.323 KB
23 Dec 2018 9.37 PM
root / root
0644
token.h
1.897 KB
23 Dec 2018 9.37 PM
root / root
0644
traceback.h
3.559 KB
23 Dec 2018 9.37 PM
root / root
0644
tupleobject.h
2.387 KB
23 Dec 2018 9.37 PM
root / root
0644
typeslots.h
2.2 KB
23 Dec 2018 9.37 PM
root / root
0644
ucnhash.h
1.031 KB
23 Dec 2018 9.37 PM
root / root
0644
unicodeobject.h
79.862 KB
23 Dec 2018 9.37 PM
root / root
0644
warnings.h
1.653 KB
23 Dec 2018 9.37 PM
root / root
0644
weakrefobject.h
2.799 KB
23 Dec 2018 9.37 PM
root / root
0644

✘✘ GRAYBYTE WORDPRESS FILE MANAGER @ 2026 CONTACT ME ✘✘
Static GIF Static GIF