Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
95fb3956
Commit
95fb3956
authored
Oct 24, 2007
by
Georg Brandl
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bug #1287: make os.environ.pop() work as expected.
parent
b19342ca
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
13 additions
and
3 deletions
+13
-3
Doc/library/os.rst
Doc/library/os.rst
+3
-2
Lib/os.py
Lib/os.py
+6
-0
Misc/NEWS
Misc/NEWS
+4
-1
No files found.
Doc/library/os.rst
View file @
95fb3956
...
...
@@ -118,10 +118,11 @@ process and user.
If the platform supports the :func:`unsetenv` function, you can delete items in
this mapping to unset environment variables. :func:`unsetenv` will be called
automatically when an item is deleted from ``os.environ``, and when
:meth:`os.environ.clear`
is called.
one of the :meth:`pop` or :meth:`clear` methods
is called.
.. versionchanged:: 2.6
Also unset environment variables when calling :meth:`os.environ.clear`.
Also unset environment variables when calling :meth:`os.environ.clear`
and :meth:`os.environ.pop`.
.. function:: chdir(path)
...
...
Lib/os.py
View file @
95fb3956
...
...
@@ -450,6 +450,9 @@ else:
for
key
in
self
.
data
.
keys
():
unsetenv
(
key
)
del
self
.
data
[
key
]
def
pop
(
self
,
key
,
*
args
):
unsetenv
(
key
)
return
self
.
data
.
pop
(
key
,
*
args
)
def
has_key
(
self
,
key
):
return
key
.
upper
()
in
self
.
data
def
__contains__
(
self
,
key
):
...
...
@@ -511,6 +514,9 @@ else:
for
key
in
self
.
data
.
keys
():
unsetenv
(
key
)
del
self
.
data
[
key
]
def
pop
(
self
,
key
,
*
args
):
unsetenv
(
key
)
return
self
.
data
.
pop
(
key
,
*
args
)
def
copy
(
self
):
return
dict
(
self
)
...
...
Misc/NEWS
View file @
95fb3956
...
...
@@ -274,11 +274,14 @@ Core and builtins
Library
-------
-
Issues
#
1181
,
#
1287
:
unsetenv
()
is
now
called
when
the
os
.
environ
.
pop
()
and
os
.
environ
.
clear
()
methods
are
used
.
-
ctypes
will
now
work
correctly
on
32
-
bit
systems
when
Python
is
configured
with
--
with
-
system
-
ffi
.
-
Patch
#
1203
:
ctypes
now
does
work
on
OS
X
when
Python
is
built
with
--
disable
-
toolbox
-
glue
--
disable
-
toolbox
-
glue
.
-
collections
.
deque
()
now
supports
a
"maxlen"
argument
.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment