-
Notifications
You must be signed in to change notification settings - Fork 747
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
Fix for running Qiling inside of IDAPython interpreter. #1482
Conversation
Code looks a bit cumbersome to be. Why not just use the following instead? try:
# ...
sys.stdin.fileno()
sys.stdout.fileno()
sys.stderr.fileno()
except UnsupportedOperation:
... Attempting to access the methods will raise the |
Added error catching for Without
Tested locally and this fix also works for my instance of IDA. |
Thanks for the update. |
Sorry for the delay - testing in Linux terminal window:
Seems to print to the console just fine. |
Anything else needed from me? Thanks! |
Fix for #1426 / #1417 / #1362. Hopefully this fix works for more than just me 🤞
Checklist
Which kind of PR do you create?
Coding convention?
Extra tests?
Changelog?
Target branch?
One last thing