Nuitka
The Python compiler
Loading...
Searching...
No Matches
import_hard.h
1// Copyright 2026, Kay Hayen, mailto:kay.hayen@gmail.com find license text at end of file
2
3/* WARNING, this code is GENERATED. Modify the template HelperImportHard.c.j2 instead! */
4
5/* This file is included from another C file, help IDEs to still parse it on its own. */
6#ifdef __IDE_ONLY__
7#include "nuitka/prelude.h"
8#endif
9
10/* C helper for hard import of module "__future__" import. */
11extern PyObject *IMPORT_HARD___FUTURE__(void);
12
13/* C helper for hard import of module "_frozen_importlib" import. */
14#if PYTHON_VERSION >= 0x300
15extern PyObject *IMPORT_HARD__FROZEN_IMPORTLIB(void);
16#endif
17
18/* C helper for hard import of module "_frozen_importlib_external" import. */
19#if PYTHON_VERSION >= 0x350
20extern PyObject *IMPORT_HARD__FROZEN_IMPORTLIB_EXTERNAL(void);
21#endif
22
23/* C helper for hard import of module "_io" import. */
24extern PyObject *IMPORT_HARD__IO(void);
25
26/* C helper for hard import of module "builtins" import. */
27extern PyObject *IMPORT_HARD_BUILTINS(void);
28
29/* C helper for hard import of module "ctypes" import. */
30extern PyObject *IMPORT_HARD_CTYPES(void);
31
32/* C helper for hard import of module "ctypes._aix" import. */
33extern PyObject *IMPORT_HARD_CTYPES___AIX(void);
34
35/* C helper for hard import of module "ctypes._endian" import. */
36extern PyObject *IMPORT_HARD_CTYPES___ENDIAN(void);
37
38/* C helper for hard import of module "ctypes.macholib" import. */
39extern PyObject *IMPORT_HARD_CTYPES__MACHOLIB(void);
40
41/* C helper for hard import of module "ctypes.util" import. */
42extern PyObject *IMPORT_HARD_CTYPES__UTIL(void);
43
44/* C helper for hard import of module "ctypes.wintypes" import. */
45#if defined(_WIN32)
46extern PyObject *IMPORT_HARD_CTYPES__WINTYPES(void);
47#endif
48
49/* C helper for hard import of module "functools" import. */
50extern PyObject *IMPORT_HARD_FUNCTOOLS(void);
51
52/* C helper for hard import of module "importlib" import. */
53extern PyObject *IMPORT_HARD_IMPORTLIB(void);
54
55/* C helper for hard import of module "importlib.metadata" import. */
56#if PYTHON_VERSION >= 0x380
57extern PyObject *IMPORT_HARD_IMPORTLIB__METADATA(void);
58#endif
59
60/* C helper for hard import of module "importlib.resources" import. */
61#if PYTHON_VERSION >= 0x370
62extern PyObject *IMPORT_HARD_IMPORTLIB__RESOURCES(void);
63#endif
64
65/* C helper for hard import of module "importlib_metadata" import. */
66extern PyObject *IMPORT_HARD_IMPORTLIB_METADATA(void);
67
68/* C helper for hard import of module "importlib_resources" import. */
69extern PyObject *IMPORT_HARD_IMPORTLIB_RESOURCES(void);
70
71/* C helper for hard import of module "io" import. */
72extern PyObject *IMPORT_HARD_IO(void);
73
74/* C helper for hard import of module "ntpath" import. */
75extern PyObject *IMPORT_HARD_NTPATH(void);
76
77/* C helper for hard import of module "os" import. */
78extern PyObject *IMPORT_HARD_OS(void);
79
80/* C helper for hard import of module "pathlib" import. */
81#if PYTHON_VERSION >= 0x3d0
82extern PyObject *IMPORT_HARD_PATHLIB(void);
83#endif
84
85/* C helper for hard import of module "pathlib._abc" import. */
86#if PYTHON_VERSION >= 0x3d0
87extern PyObject *IMPORT_HARD_PATHLIB___ABC(void);
88#endif
89
90/* C helper for hard import of module "pathlib._local" import. */
91#if PYTHON_VERSION >= 0x3d0
92extern PyObject *IMPORT_HARD_PATHLIB___LOCAL(void);
93#endif
94
95/* C helper for hard import of module "pkg_resources" import. */
96extern PyObject *IMPORT_HARD_PKG_RESOURCES(void);
97
98/* C helper for hard import of module "pkgutil" import. */
99extern PyObject *IMPORT_HARD_PKGUTIL(void);
100
101/* C helper for hard import of module "posixpath" import. */
102extern PyObject *IMPORT_HARD_POSIXPATH(void);
103
104/* C helper for hard import of module "site" import. */
105extern PyObject *IMPORT_HARD_SITE(void);
106
107/* C helper for hard import of module "sys" import. */
108extern PyObject *IMPORT_HARD_SYS(void);
109
110/* C helper for hard import of module "sysconfig" import. */
111extern PyObject *IMPORT_HARD_SYSCONFIG(void);
112
113/* C helper for hard import of module "tensorflow" import. */
114extern PyObject *IMPORT_HARD_TENSORFLOW(void);
115
116/* C helper for hard import of module "types" import. */
117extern PyObject *IMPORT_HARD_TYPES(void);
118
119/* C helper for hard import of module "typing" import. */
120#if PYTHON_VERSION >= 0x350
121extern PyObject *IMPORT_HARD_TYPING(void);
122#endif
123
124/* C helper for hard import of module "unittest" import. */
125extern PyObject *IMPORT_HARD_UNITTEST(void);
126
127/* C helper for hard import of module "unittest.mock" import. */
128#if PYTHON_VERSION >= 0x300
129extern PyObject *IMPORT_HARD_UNITTEST__MOCK(void);
130#endif
131
132// Part of "Nuitka", an optimizing Python compiler that is compatible and
133// integrates with CPython, but also works on its own.
134//
135// Licensed under the GNU Affero General Public License, Version 3 (the "License");
136// you may not use this file except in compliance with the License.
137// You may obtain a copy of the License at
138//
139// http://www.gnu.org/licenses/agpl.txt
140//
141// Unless required by applicable law or agreed to in writing, software
142// distributed under the License is distributed on an "AS IS" BASIS,
143// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
144// See the License for the specific language governing permissions and
145// limitations under the License.