Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 682ca1e + 69d44fd commit 31846c4Copy full SHA for 31846c4
1 file changed
Lib/test/test_import.py
@@ -112,10 +112,9 @@ def test_execute_bit_not_copied(self):
112
if not os.path.exists(fn):
113
self.fail("__import__ did not result in creation of "
114
"either a .pyc or .pyo file")
115
- s = os.stat(fn)
116
- self.assertEqual(
117
- stat.S_IMODE(s.st_mode),
118
- stat.S_IRUSR | stat.S_IRGRP | stat.S_IROTH)
+ s = os.stat(fn)
+ self.assertEqual(stat.S_IMODE(s.st_mode),
+ stat.S_IRUSR | stat.S_IRGRP | stat.S_IROTH)
119
finally:
120
del sys.path[0]
121
remove_files(TESTFN)
0 commit comments