| LEFT | RIGHT |
| (Both sides are equal) |
| 1 "Test posix functions" | 1 "Test posix functions" |
| 2 | 2 |
| 3 from test import support | 3 from test import support |
| 4 | 4 |
| 5 # Skip these tests if there is no posix module. | 5 # Skip these tests if there is no posix module. |
| 6 posix = support.import_module('posix') | 6 posix = support.import_module('posix') |
| 7 | 7 |
| 8 import errno | 8 import errno |
| 9 import sys | 9 import sys |
| 10 import time | 10 import time |
| (...skipping 1018 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1029 self.assertListEqual(groups, posix.getgroups()) | 1029 self.assertListEqual(groups, posix.getgroups()) |
| 1030 | 1030 |
| 1031 def test_main(): | 1031 def test_main(): |
| 1032 try: | 1032 try: |
| 1033 support.run_unittest(PosixTester, PosixGroupsTester) | 1033 support.run_unittest(PosixTester, PosixGroupsTester) |
| 1034 finally: | 1034 finally: |
| 1035 support.reap_children() | 1035 support.reap_children() |
| 1036 | 1036 |
| 1037 if __name__ == '__main__': | 1037 if __name__ == '__main__': |
| 1038 test_main() | 1038 test_main() |
| LEFT | RIGHT |