FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
cpython/Modules/_typingmodule.c 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
/
Modules
/
_typingmodule.c
Copy path
More file actions
More file actions
Latest commit
History
History
History
59 lines (45 loc) · 1.13 KB
Breadcrumbs
cpython
/
Modules
/
_typingmodule.c
Copy path
File metadata and controls
59 lines (45 loc) · 1.13 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
/* typing accelerator C extension: _typing module. */
#include
"Python.h"
#include
"clinic/_typingmodule.c.h"
/*[clinic input]
module _typing
[clinic start generated code]*/
/*[clinic end generated code: output=da39a3ee5e6b4b0d input=1db35baf1c72942b]*/
/* helper function to make typing.NewType.__call__ method faster */
/*[clinic input]
_typing._idfunc -> object
x: object
/
[clinic start generated code]*/
static
PyObject
*
_typing__idfunc
(
PyObject
*
module
,
PyObject
*
x
)
/*[clinic end generated code: output=63c38be4a6ec5f2c input=49f17284b43de451]*/
{
Py_INCREF
(
x
);
return
x
;
}
static
PyMethodDef
typing_methods
[]
=
{
_TYPING__IDFUNC_METHODDEF
{
NULL
,
NULL
,
0
,
NULL
}
};
PyDoc_STRVAR
(
typing_doc
,
"Accelerators for the typing module.\n"
);
static
struct
PyModuleDef_Slot
_typingmodule_slots
[]
=
{
{
0
,
NULL
}
};
static
struct
PyModuleDef
typingmodule
=
{
PyModuleDef_HEAD_INIT
,
"_typing"
,
typing_doc
,
0
,
typing_methods
,
_typingmodule_slots
,
NULL
,
NULL
,
NULL
};
PyMODINIT_FUNC
PyInit__typing
(
void
)
{
return
PyModuleDef_Init
(
&
typingmodule
);
}
Back
|
FazBrowse Home
|
New Git URL