cpython: Issue #15828: Don't try to close a file if imp.find_module() doesn't

http://hg.python.org/cpython/rev/d54f047312a8 changeset: 78817:d54f047312a8 user: Brett Cannon <brett@python.org> date: Fri Aug 31 11:31:20 2012 -0400 summary: Issue #15828: Don't try to close a file if imp.find_module() doesn't return one. files: Lib/test/test_imp.py | 4 +++- 1 files changed, 3 insertions(+), 1 deletions(-) diff --git a/Lib/test/test_imp.py b/Lib/test/test_imp.py --- a/Lib/test/test_imp.py +++ b/Lib/test/test_imp.py @@ -211,7 +211,9 @@ # and importlib couldn't handle C extensions example = "_heapq" x = imp.find_module(example) - self.addCleanup(x[0].close) + file_ = x[0] + if file_ is not None: + self.addCleanup(file_.close) mod = imp.load_module(example, *x) self.assertEqual(mod.__name__, example) -- Repository URL: http://hg.python.org/cpython
participants (1)
-
brett.cannon