-
-
Notifications
You must be signed in to change notification settings - Fork 1.8k
New issue
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
subprocess.Popen not generic before 3.9 #4948
Comments
Use |
Oh, thanks! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Following mypy's (run with python 3.8, in python version 3.8 mode) advise and adding type parameter for it makes the result actually not run with python 3.8 any more (with 3.9 it would be fine). I see Popen is marked generic in typeshed for all 3.x versions, and suppose that's the root cause for the issue; shouldn't it be marked as such only for >= 3.9?
The text was updated successfully, but these errors were encountered: