| LEFT | RIGHT |
| 1 # Copyright (C) 2003 Python Software Foundation | 1 # Copyright (C) 2003 Python Software Foundation |
| 2 | 2 |
| 3 import unittest | 3 import unittest |
| 4 import shutil | 4 import shutil |
| 5 import tempfile | 5 import tempfile |
| 6 import sys | 6 import sys |
| 7 import stat | 7 import stat |
| 8 import os | 8 import os |
| 9 import os.path | 9 import os.path |
| 10 import errno | 10 import errno |
| (...skipping 1590 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1601 | 1601 |
| 1602 self.assertEqual(expected, actual) | 1602 self.assertEqual(expected, actual) |
| 1603 | 1603 |
| 1604 | 1604 |
| 1605 def test_main(): | 1605 def test_main(): |
| 1606 support.run_unittest(TestShutil, TestMove, TestCopyFile, | 1606 support.run_unittest(TestShutil, TestMove, TestCopyFile, |
| 1607 TermsizeTests, TestWhich) | 1607 TermsizeTests, TestWhich) |
| 1608 | 1608 |
| 1609 if __name__ == '__main__': | 1609 if __name__ == '__main__': |
| 1610 test_main() | 1610 test_main() |
| LEFT | RIGHT |