-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathmodule.modulemap
More file actions
113 lines (113 loc) · 5.04 KB
/
module.modulemap
File metadata and controls
113 lines (113 loc) · 5.04 KB
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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
framework module Python {
umbrella header "Python.h"
export *
exclude header "cpython/frameobject.h"
exclude header "cpython/interpreteridobject.h"
exclude header "cpython/pthread_stubs.h"
exclude header "datetime.h"
exclude header "dynamic_annotations.h"
exclude header "errcode.h"
exclude header "frameobject.h"
exclude header "internal/pycore_abstract.h"
exclude header "internal/pycore_asdl.h"
exclude header "internal/pycore_ast_state.h"
exclude header "internal/pycore_ast.h"
exclude header "internal/pycore_atexit.h"
exclude header "internal/pycore_atomic_funcs.h"
exclude header "internal/pycore_atomic.h"
exclude header "internal/pycore_bitutils.h"
exclude header "internal/pycore_blocks_output_buffer.h"
exclude header "internal/pycore_bytes_methods.h"
exclude header "internal/pycore_bytesobject.h"
exclude header "internal/pycore_call.h"
exclude header "internal/pycore_ceval_state.h"
exclude header "internal/pycore_ceval.h"
exclude header "internal/pycore_code.h"
exclude header "internal/pycore_compile.h"
exclude header "internal/pycore_condvar.h"
exclude header "internal/pycore_context.h"
exclude header "internal/pycore_descrobject.h"
exclude header "internal/pycore_dict_state.h"
exclude header "internal/pycore_dict.h"
exclude header "internal/pycore_dtoa.h"
exclude header "internal/pycore_emscripten_signal.h"
exclude header "internal/pycore_exceptions.h"
exclude header "internal/pycore_faulthandler.h"
exclude header "internal/pycore_fileutils_windows.h"
exclude header "internal/pycore_fileutils.h"
exclude header "internal/pycore_floatobject.h"
exclude header "internal/pycore_flowgraph.h"
exclude header "internal/pycore_format.h"
exclude header "internal/pycore_frame.h"
exclude header "internal/pycore_function.h"
exclude header "internal/pycore_gc.h"
exclude header "internal/pycore_genobject.h"
exclude header "internal/pycore_getopt.h"
exclude header "internal/pycore_gil.h"
exclude header "internal/pycore_global_objects_fini_generated.h"
exclude header "internal/pycore_global_objects.h"
exclude header "internal/pycore_global_strings.h"
exclude header "internal/pycore_hamt.h"
exclude header "internal/pycore_hashtable.h"
exclude header "internal/pycore_import.h"
exclude header "internal/pycore_initconfig.h"
exclude header "internal/pycore_instruments.h"
exclude header "internal/pycore_interp.h"
exclude header "internal/pycore_intrinsics.h"
exclude header "internal/pycore_list.h"
exclude header "internal/pycore_long.h"
exclude header "internal/pycore_memoryobject.h"
exclude header "internal/pycore_moduleobject.h"
exclude header "internal/pycore_namespace.h"
exclude header "internal/pycore_object_state.h"
exclude header "internal/pycore_object.h"
exclude header "internal/pycore_obmalloc_init.h"
exclude header "internal/pycore_obmalloc.h"
exclude header "internal/pycore_opcode_utils.h"
exclude header "internal/pycore_opcode.h"
exclude header "internal/pycore_parser.h"
exclude header "internal/pycore_pathconfig.h"
exclude header "internal/pycore_pyarena.h"
exclude header "internal/pycore_pyerrors.h"
exclude header "internal/pycore_pyhash.h"
exclude header "internal/pycore_pylifecycle.h"
exclude header "internal/pycore_pymath.h"
exclude header "internal/pycore_pymem_init.h"
exclude header "internal/pycore_pymem.h"
exclude header "internal/pycore_pystate.h"
exclude header "internal/pycore_pythread.h"
exclude header "internal/pycore_range.h"
exclude header "internal/pycore_runtime_init_generated.h"
exclude header "internal/pycore_runtime_init.h"
exclude header "internal/pycore_runtime.h"
exclude header "internal/pycore_signal.h"
exclude header "internal/pycore_sliceobject.h"
exclude header "internal/pycore_strhex.h"
exclude header "internal/pycore_structseq.h"
exclude header "internal/pycore_symtable.h"
exclude header "internal/pycore_sysmodule.h"
exclude header "internal/pycore_time.h"
exclude header "internal/pycore_token.h"
exclude header "internal/pycore_traceback.h"
exclude header "internal/pycore_tracemalloc.h"
exclude header "internal/pycore_tuple.h"
exclude header "internal/pycore_typeobject.h"
exclude header "internal/pycore_typevarobject.h"
exclude header "internal/pycore_ucnhash.h"
exclude header "internal/pycore_unicodeobject_generated.h"
exclude header "internal/pycore_unicodeobject.h"
exclude header "internal/pycore_unionobject.h"
exclude header "internal/pycore_warnings.h"
exclude header "interpreteridobject.h"
exclude header "marshal.h"
exclude header "opcode.h"
exclude header "osdefs.h"
exclude header "py_curses.h"
exclude header "pyconfig-arm64.h"
exclude header "pyconfig-x86_64.h"
exclude header "pydtrace.h"
exclude header "pyexpat.h"
exclude header "pyport.h"
exclude header "structmember.h"
exclude header "token.h"
}