summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_grp.py
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2007-02-11 18:54:18 (GMT)
committerGuido van Rossum <guido@python.org>2007-02-11 18:54:18 (GMT)
commit9afbb4e364e087a097610e9da47362518020cc2a (patch)
tree1aa8d32d9afcd88226af4831ebd4fbda07b4c209 /Lib/test/test_grp.py
parentcd70eee24469b91d85bd66e31c44aad76d22f93a (diff)
downloadcpython-9afbb4e364e087a097610e9da47362518020cc2a.zip
cpython-9afbb4e364e087a097610e9da47362518020cc2a.tar.gz
cpython-9afbb4e364e087a097610e9da47362518020cc2a.tar.bz2
Two more trivial fixes.
Diffstat (limited to 'Lib/test/test_grp.py')
-rwxr-xr-xLib/test/test_grp.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_grp.py b/Lib/test/test_grp.py
index 08958ba..337f057 100755
--- a/Lib/test/test_grp.py
+++ b/Lib/test/test_grp.py
@@ -50,7 +50,7 @@ class GroupDatabaseTestCase(unittest.TestCase):
bynames[n] = g
bygids[g] = n
- allnames = bynames.keys()
+ allnames = list(bynames.keys())
namei = 0
fakename = allnames[namei]
while fakename in bynames: