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
The following throws an exception instead of succeeding:
from io import BytesIO f = BytesIO() f.read() class MyBytesIO(BytesIO): def read(self, n=None): raise Exception f = MyBytesIO() BytesIO.read(f)
See also #1129 and #1070.
Ran into this issue when trying to run:
make.ps1 test-"CPython.test_iter|IronPython.test_io_stdlib"
In this case it was causing a StackOverflowException:
StackOverflowException
from io import BytesIO f = BytesIO() f.read() class MyBytesIO(BytesIO): def read(self, n=None): return super().read(n) f = MyBytesIO() f.read()
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The following throws an exception instead of succeeding:
See also #1129 and #1070.
Ran into this issue when trying to run:
In this case it was causing a
StackOverflowException
:The text was updated successfully, but these errors were encountered: