mirror of
https://github.com/python/cpython.git
synced 2025-09-27 10:50:04 +00:00
Issue #13645: fix test_import failure when run immediately after test_coding.
This commit is contained in:
commit
f0a49a9e27
1 changed files with 2 additions and 1 deletions
|
@ -104,8 +104,9 @@ class ImportTests(unittest.TestCase):
|
||||||
try:
|
try:
|
||||||
fname = TESTFN + os.extsep + "py"
|
fname = TESTFN + os.extsep + "py"
|
||||||
create_empty_file(fname)
|
create_empty_file(fname)
|
||||||
__import__(TESTFN)
|
|
||||||
fn = imp.cache_from_source(fname)
|
fn = imp.cache_from_source(fname)
|
||||||
|
unlink(fn)
|
||||||
|
__import__(TESTFN)
|
||||||
if not os.path.exists(fn):
|
if not os.path.exists(fn):
|
||||||
self.fail("__import__ did not result in creation of "
|
self.fail("__import__ did not result in creation of "
|
||||||
"either a .pyc or .pyo file")
|
"either a .pyc or .pyo file")
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue