LEFT | RIGHT |
(Both sides are equal) |
1 import unittest | 1 import unittest |
2 import sys | 2 import sys |
3 import os | 3 import os |
4 import subprocess | 4 import subprocess |
5 import shutil | 5 import shutil |
6 from copy import copy | 6 from copy import copy |
7 | 7 |
8 from test.support import (run_unittest, TESTFN, unlink, check_warnings, | 8 from test.support import (run_unittest, TESTFN, unlink, check_warnings, |
9 captured_stdout, skip_unless_symlink, change_cwd) | 9 captured_stdout, skip_unless_symlink, change_cwd) |
10 | 10 |
(...skipping 422 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
433 'var5': 'dollar$5', | 433 'var5': 'dollar$5', |
434 'var6': '42/lib/python3.5/config-b42dollar$5-x86_64-linux-gnu', | 434 'var6': '42/lib/python3.5/config-b42dollar$5-x86_64-linux-gnu', |
435 }) | 435 }) |
436 | 436 |
437 | 437 |
438 def test_main(): | 438 def test_main(): |
439 run_unittest(TestSysConfig, MakefileTests) | 439 run_unittest(TestSysConfig, MakefileTests) |
440 | 440 |
441 if __name__ == "__main__": | 441 if __name__ == "__main__": |
442 test_main() | 442 test_main() |
LEFT | RIGHT |