diff options
-rw-r--r-- | Lib/site.py | 3 | ||||
-rw-r--r-- | Misc/NEWS.d/next/Security/2019-06-21-14-42-53.bpo-37364.IIRc2s.rst | 1 |
2 files changed, 3 insertions, 1 deletions
diff --git a/Lib/site.py b/Lib/site.py index ad1146332b..e7aafb7011 100644 --- a/Lib/site.py +++ b/Lib/site.py @@ -73,6 +73,7 @@ import sys import os import builtins import _sitebuiltins +import io # Prefixes for site-packages; add additional prefixes like /usr/local here PREFIXES = [sys.prefix, sys.exec_prefix] @@ -156,7 +157,7 @@ def addpackage(sitedir, name, known_paths): reset = False fullname = os.path.join(sitedir, name) try: - f = open(fullname, "r") + f = io.TextIOWrapper(io.open_code(fullname)) except OSError: return with f: diff --git a/Misc/NEWS.d/next/Security/2019-06-21-14-42-53.bpo-37364.IIRc2s.rst b/Misc/NEWS.d/next/Security/2019-06-21-14-42-53.bpo-37364.IIRc2s.rst new file mode 100644 index 0000000000..7506fa9064 --- /dev/null +++ b/Misc/NEWS.d/next/Security/2019-06-21-14-42-53.bpo-37364.IIRc2s.rst @@ -0,0 +1 @@ +:func:`io.open_code` is now used when reading :file:`.pth` files. |