Lines Matching defs:env
68 --help-env : print help about Python environment variables and exit\n\
205 int Py_IsolatedFlag = 0; /* for -I, isolate from user's env */
1697 const char *env = config_get_env(config, "PYTHONTRACEMALLOC");
1698 if (env) {
1699 if (!_Py_str_to_int(env, &nframe)) {
1740 const char *env = config_get_env(config, "PYTHONINTMAXSTRDIGITS");
1741 if (env) {
1743 if (!_Py_str_to_int(env, &maxdigits)) {
1794 // PYTHONPYCACHEPREFIX env var ignored
1810 /* More complex options configured by env var and -X option */
2384 // help-env
2523 wchar_t *env = NULL;
2524 status = CONFIG_GET_ENV_DUP(config, &env,
2530 /* env var is not set or is empty */
2531 if (env == NULL) {
2537 for (warning = WCSTOK(env, L",", &context);
2543 PyMem_RawFree(env);
2547 PyMem_RawFree(env);