diff options
author | Guido van Rossum <guido@python.org> | 1998-03-26 19:42:58 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1998-03-26 19:42:58 (GMT) |
commit | 41360a4696f488e49e5409b3b1baf1fff6ae0044 (patch) | |
tree | 9c9b73b7446cc9fc36e09038bf26d889bb5b6f24 /Lib/test/test_grp.py | |
parent | cd0f59ea0824ad6f897f05c2db4d4471e47e6063 (diff) | |
download | cpython-41360a4696f488e49e5409b3b1baf1fff6ae0044.zip cpython-41360a4696f488e49e5409b3b1baf1fff6ae0044.tar.gz cpython-41360a4696f488e49e5409b3b1baf1fff6ae0044.tar.bz2 |
Mass check-in after untabifying all files that need it.
Diffstat (limited to 'Lib/test/test_grp.py')
-rwxr-xr-x | Lib/test/test_grp.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Lib/test/test_grp.py b/Lib/test/test_grp.py index f39049f..bfe3a76 100755 --- a/Lib/test/test_grp.py +++ b/Lib/test/test_grp.py @@ -10,16 +10,16 @@ groups = grp.getgrall() if verbose: print 'Groups:' for group in groups: - print group + print group if not groups: if verbose: - print "Empty Group Database -- no further tests of grp module possible" + print "Empty Group Database -- no further tests of grp module possible" else: group = grp.getgrgid(groups[0][2]) if verbose: - print 'Group Entry for GID %d: %s' % (groups[0][2], group) + print 'Group Entry for GID %d: %s' % (groups[0][2], group) group = grp.getgrnam(groups[0][0]) if verbose: - print 'Group Entry for group %s: %s' % (groups[0][0], group) + print 'Group Entry for group %s: %s' % (groups[0][0], group) |