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
After installing q 3.1.6 on Ubuntu-20.04 with Python 3.8.10 and running q "select * from my.csv" | less, it logs this when exiting from less:
q "select * from my.csv" | less
Exception ignored in: <_io.TextIOWrapper name='<stdout>' mode='w' encoding='utf-8'> BrokenPipeError: [Errno 32] Broken pipe
When running without less, the above message is not logged.
The text was updated successfully, but these errors were encountered:
For now I worked around it as described here: https://stackoverflow.com/questions/14207708/ioerror-errno-32-broken-pipe-when-piping-prog-py-othercmd
from signal import signal, SIGPIPE, SIG_DFL signal(SIGPIPE, SIG_DFL)
Sorry, something went wrong.
No branches or pull requests
After installing q 3.1.6 on Ubuntu-20.04 with Python 3.8.10 and running
q "select * from my.csv" | less
, it logs this when exiting from less:When running without less, the above message is not logged.
The text was updated successfully, but these errors were encountered: