summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_cfgparser.py
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2010-02-06 23:34:10 (GMT)
committerGeorg Brandl <georg@python.org>2010-02-06 23:34:10 (GMT)
commitcd4a21bb8ea184c32d33d534d42bc08b57b405fb (patch)
tree68a3315c73b810b11ab07509f5320f49f46b8694 /Lib/test/test_cfgparser.py
parentbd564c3c21ef4c6d6cb0070870edd9d2f7c89d11 (diff)
downloadcpython-cd4a21bb8ea184c32d33d534d42bc08b57b405fb.zip
cpython-cd4a21bb8ea184c32d33d534d42bc08b57b405fb.tar.gz
cpython-cd4a21bb8ea184c32d33d534d42bc08b57b405fb.tar.bz2
Fix more unbound locals in code paths that do not seem to be used.
Diffstat (limited to 'Lib/test/test_cfgparser.py')
-rw-r--r--Lib/test/test_cfgparser.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/Lib/test/test_cfgparser.py b/Lib/test/test_cfgparser.py
index c7d6a94..fdd3c0c 100644
--- a/Lib/test/test_cfgparser.py
+++ b/Lib/test/test_cfgparser.py
@@ -17,8 +17,9 @@ class SortedDict(UserDict.UserDict):
return result
def values(self):
+ # XXX never used?
result = self.items()
- return [i[1] for i in values]
+ return [i[1] for i in result]
def iteritems(self): return iter(self.items())
def iterkeys(self): return iter(self.keys())