mirror of
https://github.com/python/cpython.git
synced 2025-08-02 16:13:13 +00:00
parent
dd917f84e3
commit
8890bb2264
2 changed files with 4 additions and 2 deletions
|
@ -168,7 +168,8 @@ class BuildPyTestCase(support.TempdirManager,
|
||||||
finally:
|
finally:
|
||||||
sys.dont_write_bytecode = old_dont_write_bytecode
|
sys.dont_write_bytecode = old_dont_write_bytecode
|
||||||
|
|
||||||
self.assertIn('byte-compiling is disabled', self.logs[0][1])
|
self.assertIn('byte-compiling is disabled',
|
||||||
|
self.logs[0][1] % self.logs[0][2])
|
||||||
|
|
||||||
|
|
||||||
def test_suite():
|
def test_suite():
|
||||||
|
|
|
@ -104,7 +104,8 @@ class InstallLibTestCase(support.TempdirManager,
|
||||||
finally:
|
finally:
|
||||||
sys.dont_write_bytecode = old_dont_write_bytecode
|
sys.dont_write_bytecode = old_dont_write_bytecode
|
||||||
|
|
||||||
self.assertIn('byte-compiling is disabled', self.logs[0][1])
|
self.assertIn('byte-compiling is disabled',
|
||||||
|
self.logs[0][1] % self.logs[0][2])
|
||||||
|
|
||||||
|
|
||||||
def test_suite():
|
def test_suite():
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue