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
Originally taken from 104057 Minimal reproducible example:
import os def make_bad_fd(): file = open("test_file.txt", "wb") try: return file.fileno() finally: file.close() fd = make_bad_fd() os.write(fd, b"foo")
Error:
"Debug assertion Failed." File minkernel/ctrs/ucrt/src/appcrt/lowio/write.cpp line 50, expression (_osfile(fh) & FOPEN)
Reproducible only on Windows and debug build of interpreter. Is it a bug?
The text was updated successfully, but these errors were encountered:
It's not a bug. See my comment on issue #104057.
Sorry, something went wrong.
No branches or pull requests
Originally taken from 104057
Minimal reproducible example:
Error:
Reproducible only on Windows and debug build of interpreter.
Is it a bug?
The text was updated successfully, but these errors were encountered: