diff options
author | Berker Peksag <berker.peksag@gmail.com> | 2014-08-22 17:52:15 (GMT) |
---|---|---|
committer | Berker Peksag <berker.peksag@gmail.com> | 2014-08-22 17:52:15 (GMT) |
commit | 0242f79051cd43343bafa797c2bfa9512f7be6c2 (patch) | |
tree | 18742217637751099cdb01bde425ff83c07f47bc /Lib/test | |
parent | 31f8a677a464300696d794b4ee179bbb66b84080 (diff) | |
download | cpython-0242f79051cd43343bafa797c2bfa9512f7be6c2.zip cpython-0242f79051cd43343bafa797c2bfa9512f7be6c2.tar.gz cpython-0242f79051cd43343bafa797c2bfa9512f7be6c2.tar.bz2 |
Issue #19447: Use importlib.util.cache_from_source() instead of ``bad_coding + 'c'``.
Thanks to Arfrever Frehtes Taifersar Arahesis.
Diffstat (limited to 'Lib/test')
-rw-r--r-- | Lib/test/test_py_compile.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Lib/test/test_py_compile.py b/Lib/test/test_py_compile.py index 5edfafd..640dcc3 100644 --- a/Lib/test/test_py_compile.py +++ b/Lib/test/test_py_compile.py @@ -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() |