Commit 0242f790 authored by Berker Peksag's avatar Berker Peksag

Issue #19447: Use importlib.util.cache_from_source() instead of ``bad_coding + 'c'``.

Thanks to Arfrever Frehtes Taifersar Arahesis.
parent 31f8a677
......@@ -95,7 +95,8 @@ class PyCompileTests(unittest.TestCase):
def test_bad_coding(self):
bad_coding = os.path.join(os.path.dirname(__file__), 'bad_coding2.py')
self.assertIsNone(py_compile.compile(bad_coding, doraise=False))
self.assertFalse(os.path.exists(bad_coding + 'c'))
self.assertFalse(os.path.exists(
importlib.util.cache_from_source(bad_coding)))
if __name__ == "__main__":
unittest.main()
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment