summaryrefslogtreecommitdiffstats
path: root/Lib/os.py
diff options
context:
space:
mode:
authorMartin v. Löwis <martin@v.loewis.de>2005-02-17 21:23:20 (GMT)
committerMartin v. Löwis <martin@v.loewis.de>2005-02-17 21:23:20 (GMT)
commit5510f65f5a033eb8d0e9d90046087047410846f9 (patch)
treea4c660c83698b3404579c565f1072c3b5bbd5191 /Lib/os.py
parent3040b199768dbf1fc93ecb95dbd27ef9485fa03d (diff)
downloadcpython-5510f65f5a033eb8d0e9d90046087047410846f9.zip
cpython-5510f65f5a033eb8d0e9d90046087047410846f9.tar.gz
cpython-5510f65f5a033eb8d0e9d90046087047410846f9.tar.bz2
Avoid using items() in environ.update(). Fixes #1124513.
Will backport to 2.4.
Diffstat (limited to 'Lib/os.py')
-rw-r--r--Lib/os.py26
1 files changed, 18 insertions, 8 deletions
diff --git a/Lib/os.py b/Lib/os.py
index b967978..5824609 100644
--- a/Lib/os.py
+++ b/Lib/os.py
@@ -445,12 +445,17 @@ else:
def update(self, dict=None, **kwargs):
if dict:
try:
- items = dict.items()
+ keys = dict.keys()
except AttributeError:
# List of (key, value)
- items = dict
- for k, v in items:
- self[k] = v
+ for k, v in dict:
+ self[k] = v
+ else:
+ # got keys
+ # cannot use items(), since mappings
+ # may not have them.
+ for k in keys:
+ self[k] = dict[k]
if kwargs:
self.update(kwargs)
def copy(self):
@@ -467,12 +472,17 @@ else:
def update(self, dict=None, **kwargs):
if dict:
try:
- items = dict.items()
+ keys = dict.keys()
except AttributeError:
# List of (key, value)
- items = dict
- for k, v in items:
- self[k] = v
+ for k, v in dict:
+ self[k] = v
+ else:
+ # got keys
+ # cannot use items(), since mappings
+ # may not have them.
+ for k in keys:
+ self[k] = dict[k]
if kwargs:
self.update(kwargs)
try: