GH-133711: Enable UTF-8 mode by default (PEP 686) (#133712)

Co-authored-by: Victor Stinner <vstinner@python.org>
This commit is contained in:
Adam Turner
2025-07-15 10:45:41 +01:00
committed by GitHub
parent f320c951c3
commit c89a66feb1
14 changed files with 93 additions and 85 deletions

View File

@@ -380,8 +380,7 @@ def _text_encoding():
if sys.flags.utf8_mode:
return "utf-8"
else:
return locale.getencoding()
return locale.getencoding()
def call(*popenargs, timeout=None, **kwargs):