mirror of https://github.com/python/cpython.git
only close non-None files
This commit is contained in:
parent
feb5149244
commit
aa6f688bd4
|
@ -241,7 +241,8 @@ def test_load_module_extension_file_is_None(self):
|
|||
# Issue #15902
|
||||
name = '_heapq'
|
||||
found = imp.find_module(name)
|
||||
found[0].close()
|
||||
if found[0] is not None:
|
||||
found[0].close()
|
||||
if found[2][2] != imp.C_EXTENSION:
|
||||
return
|
||||
imp.load_module(name, None, *found[1:])
|
||||
|
|
Loading…
Reference in New Issue