summaryrefslogtreecommitdiffstats
path: root/Lib/imp.py
diff options
context:
space:
mode:
authorBrett Cannon <brett@python.org>2013-08-23 15:45:57 (GMT)
committerBrett Cannon <brett@python.org>2013-08-23 15:45:57 (GMT)
commita4975a911d17d8baa96570794fa6db19c0676a2a (patch)
tree8b9dfc5d79c0b14d87fb274e4e8aef79ccc1c48a /Lib/imp.py
parentf5ebd264032fbcb07a41a49031c2281f81c9a814 (diff)
downloadcpython-a4975a911d17d8baa96570794fa6db19c0676a2a.zip
cpython-a4975a911d17d8baa96570794fa6db19c0676a2a.tar.gz
cpython-a4975a911d17d8baa96570794fa6db19c0676a2a.tar.bz2
Issue #18755: Allow imp.load_*() loaders to have get_data() called
multiple times.
Diffstat (limited to 'Lib/imp.py')
-rw-r--r--Lib/imp.py9
1 files changed, 7 insertions, 2 deletions
diff --git a/Lib/imp.py b/Lib/imp.py
index 30c343f..4088383 100644
--- a/Lib/imp.py
+++ b/Lib/imp.py
@@ -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)