[Python-checkins] python/dist/src/Lib/test test_grp.py,1.12,1.13
doerwalter@users.sourceforge.net
doerwalter@users.sourceforge.net
Tue, 15 Apr 2003 09:08:04 -0700
Update of /cvsroot/python/python/dist/src/Lib/test
In directory sc8-pr-cvs1:/tmp/cvs-serv26649/Lib/test
Modified Files:
test_grp.py
Log Message:
Fix copy & paste error in comment.
Index: test_grp.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/test/test_grp.py,v
retrieving revision 1.12
retrieving revision 1.13
diff -C2 -d -r1.12 -r1.13
*** test_grp.py 15 Apr 2003 15:59:36 -0000 1.12
--- test_grp.py 15 Apr 2003 16:08:01 -0000 1.13
***************
*** 27,31 ****
# for one gid
# self.assertEqual(grp.getgrgid(e.gr_gid), e)
! # instead of this collect all entries for one uid
# and check afterwards
entriesbygid.setdefault(e.gr_gid, []).append(e)
--- 27,31 ----
# for one gid
# self.assertEqual(grp.getgrgid(e.gr_gid), e)
! # instead of this collect all entries for one gid
# and check afterwards
entriesbygid.setdefault(e.gr_gid, []).append(e)