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 show_ref_count;
147 int dump_refs;
148 int malloc_stats;
149 wchar_t *filesystem_encoding;
150 wchar_t *filesystem_errors;
151 wchar_t *pycache_prefix;
152 int parse_argv;
153 PyWideStringList orig_argv;
154 PyWideStringList argv;
155 PyWideStringList xoptions;
156 PyWideStringList warnoptions;
157 int site_import;
158 int bytes_warning;
159 int warn_default_encoding;
160 int inspect;
161 int interactive;
162 int optimization_level;
163 int parser_debug;
164 int write_bytecode;
165 int verbose;
166 int quiet;
167 int user_site_directory;
168 int configure_c_stdio;
169 int buffered_stdio;
170 wchar_t *stdio_encoding;
171 wchar_t *stdio_errors;
173 int legacy_windows_stdio;
175 wchar_t *check_hash_pycs_mode;
178 int pathconfig_warnings;
179 wchar_t *program_name;
180 wchar_t *pythonpath_env;
181 wchar_t *home;
182 wchar_t *platlibdir;
185 int module_search_paths_set;
186 PyWideStringList module_search_paths;
187 wchar_t *executable;
188 wchar_t *base_executable;
212 } PyConfig; argument