From: Walter Dörwald Date: Tue, 15 Apr 2003 16:08:01 +0000 (+0000) Subject: Fix copy & paste error in comment. X-Git-Tag: v2.3c1~1182 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=64976e74af6a1ad11381f7688d5bf80aad65bc73;p=thirdparty%2FPython%2Fcpython.git Fix copy & paste error in comment. --- diff --git a/Lib/test/test_grp.py b/Lib/test/test_grp.py index f27ef8cf1e52..71c489762b1e 100755 --- a/Lib/test/test_grp.py +++ b/Lib/test/test_grp.py @@ -26,7 +26,7 @@ class GroupDatabaseTestCase(unittest.TestCase): # The following won't work, because of duplicate entries # for one gid # self.assertEqual(grp.getgrgid(e.gr_gid), e) - # instead of this collect all entries for one uid + # instead of this collect all entries for one gid # and check afterwards entriesbygid.setdefault(e.gr_gid, []).append(e)