diff options
author | Guido van Rossum <guido@python.org> | 2001-10-19 01:31:59 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2001-10-19 01:31:59 (GMT) |
commit | c524d952da928f745203876f2e67f651c2bc7246 (patch) | |
tree | 59686a72378708c6884596341bdd353d5ac3e4bf /configure.in | |
parent | b6c1d5239cfeadd761d2055cc44212f7a6b7e5af (diff) | |
download | cpython-c524d952da928f745203876f2e67f651c2bc7246.zip cpython-c524d952da928f745203876f2e67f651c2bc7246.tar.gz cpython-c524d952da928f745203876f2e67f651c2bc7246.tar.bz2 |
SF patch #460805 by Chris Gonnerman: Support for unsetenv()
This adds unsetenv to posix, and uses it in the __delitem__ method of
os.environ.
(XXX Should we change the preferred name for putenv to setenv, for
consistency?)
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.in b/configure.in index a578527..96ba400 100644 --- a/configure.in +++ b/configure.in @@ -1411,7 +1411,7 @@ AC_CHECK_FUNCS(alarm chown chroot clock confstr ctermid ctermid_r execv \ setlocale setregid setreuid setsid setpgid setuid setvbuf snprintf \ sigaction siginterrupt sigrelse strftime strptime symlink sysconf \ tcgetpgrp tcsetpgrp tempnam timegm times tmpfile tmpnam tmpnam_r \ - truncate uname waitpid _getpty getpriority) + truncate uname unsetenv waitpid _getpty getpriority) # check for openpty and forkpty |