We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feature or enhancement
Emit EncodingWarning in subprocess.Popen(text=True) and locale.getpreferredencoding().
subprocess.Popen(text=True)
locale.getpreferredencoding()
Pitch
UTF-8 Mode will affect them. So we need to emit EncodingWarning like open().
open()
See PEP 686 for detail.
The text was updated successfully, but these errors were encountered:
gh-91954: Emit EncodingWarning from locale and subprocess (GH-91977)
354ace8
locale.getpreferredencoding() and subprocess.Popen() emit EncodingWarning
gh-91954: Use shell=True in test_subprocess.test_encoding_warning (GH…
b963618
…-92090)
Successfully merging a pull request may close this issue.
Feature or enhancement
Emit EncodingWarning in
subprocess.Popen(text=True)
andlocale.getpreferredencoding()
.Pitch
UTF-8 Mode will affect them. So we need to emit EncodingWarning like
open()
.See PEP 686 for detail.
The text was updated successfully, but these errors were encountered: