summaryrefslogtreecommitdiffstats
path: root/Lib/site.py
diff options
context:
space:
mode:
authorVinay Sajip <vinay_sajip@yahoo.co.uk>2015-10-01 10:27:00 (GMT)
committerVinay Sajip <vinay_sajip@yahoo.co.uk>2015-10-01 10:27:00 (GMT)
commitf223c53218fe76f333fce65f17fcaad5917d56d5 (patch)
tree042252328b978d1701ae1914a9665d900ed3d950 /Lib/site.py
parentf731bc09fa70226f4fd641feb75801058b8bdd71 (diff)
downloadcpython-f223c53218fe76f333fce65f17fcaad5917d56d5.zip
cpython-f223c53218fe76f333fce65f17fcaad5917d56d5.tar.gz
cpython-f223c53218fe76f333fce65f17fcaad5917d56d5.tar.bz2
Closes #25185: Use UTF-8 encoding when reading pyvenv.cfg.
Diffstat (limited to 'Lib/site.py')
-rw-r--r--Lib/site.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/Lib/site.py b/Lib/site.py
index ad5d136..3c8584b 100644
--- a/Lib/site.py
+++ b/Lib/site.py
@@ -472,7 +472,9 @@ def venv(known_paths):
config_line = re.compile(CONFIG_LINE)
virtual_conf = candidate_confs[0]
system_site = "true"
- with open(virtual_conf) as f:
+ # Issue 25185: Use UTF-8, as that's what the venv module uses when
+ # writing the file.
+ with open(virtual_conf, encoding='utf-8') as f:
for line in f:
line = line.strip()
m = config_line.match(line)