FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
cpython/Include/moduleobject.h at doc-link-https · 180909/cpython · GitHub
180909
/
cpython
Public
forked from
python/cpython
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
5
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
cpython
/
Include
/
moduleobject.h
Copy path
More file actions
More file actions
Latest commit
History
History
History
95 lines (79 loc) · 2.32 KB
Breadcrumbs
cpython
/
Include
/
moduleobject.h
Copy path
File metadata and controls
95 lines (79 loc) · 2.32 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
/* 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_IS_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
*
);
Py_DEPRECATED
(
3.2
)
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
*
);
PyAPI_FUNC
(
int
)
_PyModuleSpec_IsInitializing
(
PyObject
*
);
#endif
PyAPI_FUNC
(
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
(
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(_Py_NULL) \
_Py_NULL,
/* m_init */
\
0
,
/* m_index */
\
_Py_NULL
,
/* m_copy */
\
}
#if
!
defined
(
Py_LIMITED_API
)
||
Py_LIMITED_API
+
0
>=
0x03050000
/* New in 3.5 */
struct
PyModuleDef_Slot
{
int
slot
;
void
*
value
;
};
#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 */
struct
PyModuleDef
{
PyModuleDef_Base
m_base
;
const
char
*
m_name
;
const
char
*
m_doc
;
Py_ssize_t
m_size
;
PyMethodDef
*
m_methods
;
PyModuleDef_Slot
*
m_slots
;
traverseproc
m_traverse
;
inquiry
m_clear
;
freefunc
m_free
;
};
// Internal C API
#ifdef
Py_BUILD_CORE
extern
int
_PyModule_IsExtension
(
PyObject
*
obj
);
#endif
#ifdef
__cplusplus
}
#endif
#endif
/* !Py_MODULEOBJECT_H */
Back
|
FazBrowse Home
|
New Git URL