Home | History | Annotate | Download | only in Modules

Lines Matching refs:unsetenv

7224 "unsetenv(key)\n\n\
7235 if (!PyArg_ParseTuple(args, "s:unsetenv", &s1))
7239 unsetenv(s1);
7241 err = unsetenv(s1);
7248 * happen after the real unsetenv() call because the
7260 #endif /* unsetenv */
9062 {"unsetenv", posix_unsetenv, METH_VARARGS, posix_unsetenv__doc__},