mirror of
https://github.com/python/cpython.git
synced 2024-11-24 10:24:35 +08:00
bpo-37364: Use io.open_code() to read .pth files (GH-14299)
https://bugs.python.org/issue37364
This commit is contained in:
parent
f5690925df
commit
184f3d4f39
@ -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:
|
||||
|
@ -0,0 +1 @@
|
||||
:func:`io.open_code` is now used when reading :file:`.pth` files.
|
Loading…
Reference in New Issue
Block a user