Lines Matching defs:PyConfig
134 typedef struct PyConfig { struct
135 int _config_init; /* _PyConfigInitEnum value */ argument
137 int isolated;
138 int use_environment;
139 int dev_mode;
140 int install_signal_handlers;
141 int use_hash_seed;
142 unsigned long hash_seed;
143 int faulthandler;
144 int tracemalloc;
145 int import_time;
146 int code_debug_ranges;
147 int show_ref_count;
148 int dump_refs;
149 wchar_t *dump_refs_file;
150 int malloc_stats;
151 wchar_t *filesystem_encoding;
152 wchar_t *filesystem_errors;
153 wchar_t *pycache_prefix;
154 int parse_argv;
155 PyWideStringList orig_argv;
156 PyWideStringList argv;
157 PyWideStringList xoptions;
158 PyWideStringList warnoptions;
159 int site_import;
160 int bytes_warning;
161 int warn_default_encoding;
162 int inspect;
163 int interactive;
164 int optimization_level;
165 int parser_debug;
166 int write_bytecode;
167 int verbose;
168 int quiet;
169 int user_site_directory;
170 int configure_c_stdio;
171 int buffered_stdio;
172 wchar_t *stdio_encoding;
173 wchar_t *stdio_errors;
175 int legacy_windows_stdio;
177 wchar_t *check_hash_pycs_mode;
178 int use_frozen_modules;
179 int safe_path;
182 int pathconfig_warnings;
183 wchar_t *program_name;
184 wchar_t *pythonpath_env;
185 wchar_t *home;
186 wchar_t *platlibdir;
189 int module_search_paths_set;
190 PyWideStringList module_search_paths;
191 wchar_t *stdlib_dir;
192 wchar_t *executable;
193 wchar_t *base_executable;
194 wchar_t *prefix;
195 wchar_t *base_prefix;
196 wchar_t *exec_prefix;
220 } PyConfig; argument