]> granicus.if.org Git - python/commitdiff
Issue #18755: Allow imp.load_*() loaders to have get_data() called
authorBrett Cannon <brett@python.org>
Fri, 23 Aug 2013 15:45:57 +0000 (11:45 -0400)
committerBrett Cannon <brett@python.org>
Fri, 23 Aug 2013 15:45:57 +0000 (11:45 -0400)
multiple times.

Lib/imp.py
Lib/test/test_imp.py

index 30c343f62e0d88d42c647b6bbd323bbf56301d82..408838387befba18d0f5014418727b3b824231c9 100644 (file)
@@ -90,13 +90,18 @@ class _HackedGetData:
     def get_data(self, path):
         """Gross hack to contort loader to deal w/ load_*()'s bad API."""
         if self.file and path == self.path:
-            with self.file:
+            if not self.file.closed:
+                file = self.file
+            else:
+                self.file = file = open(self.path, 'r')
+
+            with file:
                 # Technically should be returning bytes, but
                 # SourceLoader.get_code() just passed what is returned to
                 # compile() which can handle str. And converting to bytes would
                 # require figuring out the encoding to decode to and
                 # tokenize.detect_encoding() only accepts bytes.
-                return self.file.read()
+                return file.read()
         else:
             return super().get_data(path)
 
index bf29e424d24a52104e76dd13ea5f70d870392d54..b56efe3bea13479606165f67ff36fe6d44119642 100644 (file)
@@ -248,6 +248,13 @@ class ImportTests(unittest.TestCase):
             return
         imp.load_module(name, None, *found[1:])
 
+    def test_multiple_calls_to_get_data(self):
+        # Issue #18755: make sure multiple calls to get_data() can succeed.
+        loader = imp._LoadSourceCompatibility('imp', imp.__file__,
+                                              open(imp.__file__))
+        loader.get_data(imp.__file__)  # File should be closed
+        loader.get_data(imp.__file__)  # Will need to create a newly opened file
+
 
 class ReloadTests(unittest.TestCase):