Home
last modified time | relevance | path

Searched refs:use_env (Results 1 – 9 of 9) sorted by relevance

/third_party/rust/crates/clap/tests/derive/
Dauthor_version_about.rs31 fn use_env() { in use_env() function
/third_party/python/Python/
Dinitconfig.c1664 int use_env = config->use_environment; in config_read_env_vars() local
1667 _Py_get_env_flag(use_env, &config->parser_debug, "PYTHONDEBUG"); in config_read_env_vars()
1668 _Py_get_env_flag(use_env, &config->verbose, "PYTHONVERBOSE"); in config_read_env_vars()
1669 _Py_get_env_flag(use_env, &config->optimization_level, "PYTHONOPTIMIZE"); in config_read_env_vars()
1670 _Py_get_env_flag(use_env, &config->inspect, "PYTHONINSPECT"); in config_read_env_vars()
1673 _Py_get_env_flag(use_env, &dont_write_bytecode, "PYTHONDONTWRITEBYTECODE"); in config_read_env_vars()
1679 _Py_get_env_flag(use_env, &no_user_site_directory, "PYTHONNOUSERSITE"); in config_read_env_vars()
1685 _Py_get_env_flag(use_env, &unbuffered_stdio, "PYTHONUNBUFFERED"); in config_read_env_vars()
1691 _Py_get_env_flag(use_env, &config->legacy_windows_stdio, in config_read_env_vars()
/third_party/python/Lib/test/
Dtest_curses.py128 curses.use_env(False)
129 curses.use_env(True)
/third_party/python/Modules/
D_cursesmodule.c4526 use_env(flag); in _curses_use_env_impl()
/third_party/python/
Dconfigure.ac5386 AC_MSG_CHECKING(for use_env)
5388 #ifndef use_env
5389 void *x=use_env
5392 [AC_DEFINE(HAVE_CURSES_USE_ENV, 1, Define if you have the 'use_env' function.)
Dpyconfig.h.in208 /* Define if you have the 'use_env' function. */
Dconfigure16885 void *x=use_env
/third_party/python/Doc/library/
Dcurses.rst681 .. function:: use_env(flag)
/third_party/python/Misc/
DHISTORY13734 - Issue #7597: curses.use_env() can now be called before initscr(). Noted by