Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions Lib/test/test_import/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -487,6 +487,7 @@ def test_with_extension(ext):
forget(TESTFN)
unlink(source)
unlink(pyc)
rmtree('__pycache__')

sys.path.insert(0, os.curdir)
try:
Expand Down Expand Up @@ -666,6 +667,7 @@ def __del__(self):
import importlib
sys.argv.insert(0, C())
"""))
self.addCleanup(unlink, testfn)
script_helper.assert_python_ok(testfn)

@skip_if_dont_write_bytecode
Expand Down Expand Up @@ -2063,6 +2065,7 @@ def test_unencodable_filename(self):
# encode filenames, especially on Windows
pyname = script_helper.make_script('', TESTFN_UNENCODABLE, 'pass')
self.addCleanup(unlink, pyname)
self.addCleanup(rmtree, '__pycache__')
name = pyname[:-3]
script_helper.assert_python_ok("-c", "mod = __import__(%a)" % name,
__isolated=False)
Expand Down
Loading