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
Calling shlex.split(None) is deprecated since Python 3.9: commit 975ac32 of bpo-33262.
What's New in Python 3.9:
Passing None as the first argument to the shlex.split() function has been deprecated. (Contributed by Zackery Spytz in bpo-33262.)
IMO it's now time to remove this deprecated feature.
I wrote PR #94353 to implement this change.
The text was updated successfully, but these errors were encountered:
gh-94352: shlex.split() no longer accepts None (#94353)
fbcee57
shlex.split(): Passing None for s argument now raises an exception, rather than reading sys.stdin. The feature was deprecated in Python 3.9.
No branches or pull requests
vstinner commentedJun 27, 2022
•
edited
Calling shlex.split(None) is deprecated since Python 3.9: commit 975ac32 of bpo-33262.
What's New in Python 3.9:
IMO it's now time to remove this deprecated feature.
I wrote PR #94353 to implement this change.
The text was updated successfully, but these errors were encountered: