-
-
Notifications
You must be signed in to change notification settings - Fork 76
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
TypeError: __init__() takes at most 5 arguments (6 given) in subprocess.py #63
Comments
Would it do any harm if removed from |
First, I'm not at all surprised that pypy3 crashed, as pypy3 targets the functionality of CPython 3.2.5, and CPython 3.2.0 was so hilariously awful from an implementing-green-point-of-view that I never even attempted it. (Green officially supports CPython 2.7, 3.4+, and pypy) Second, I was absolutely shocked that pypy3 passed all of green's unit tests once this issue you pointed out was addressed. Either a lot of things changed between CPython 3.2.0 and 3.2.5, or pypy3 has just done an excellent job of adopting post-3.2 behavior. Third, I took the advice of @krisztianfekete and just stopped attempting to pass-thru context. It's a slightly simpler fix for the moment (unless we start using context in the future). It looks like I should be able to put this out in a 1.11.0 release later today. |
I'm getting the following traceback on pypy3
The text was updated successfully, but these errors were encountered: