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
On windows, running under git bash:
/c/Python33/python testris.py /c/Python33/python learntris.py just times out, even though /c/Python33/python learntris.py runs correctly.
/c/Python33/python testris.py /c/Python33/python learntris.py
/c/Python33/python learntris.py
The given learntris.py implementation is:
learntris.py
import sys sys.stdin.readline()
(Which should pass the first test.) The --shell option makes no difference.
--shell
All variations work fine under python 2.7.6:
/c/Python27/python2 testris.py --shell /c/Python33/python learntris.py /c/Python27/python2 testris.py --shell /c/Python27/python2 learntris.py /c/Python27/python2 testris.py /c/Python33/python.exe learntris.py /c/Python27/python2 testris.py /c/Python27/python2.exe learntris.py
The text was updated successfully, but these errors were encountered:
Interestingly, the following learntris.py implementation does not lead to a timeout:
pass
Since the timeout occured when sys.readline() was invoked, this may indicate an issue with the way python 3 is sending line endings.
sys.readline()
Sorry, something went wrong.
http://bugs.python.org/issue21332
Successfully merging a pull request may close this issue.
On windows, running under git bash:
/c/Python33/python testris.py /c/Python33/python learntris.py
just times out, even though/c/Python33/python learntris.py
runs correctly.The given
learntris.py
implementation is:(Which should pass the first test.) The
--shell
option makes no difference.All variations work fine under python 2.7.6:
The text was updated successfully, but these errors were encountered: