Message217100
The compileall module's command line interface has a -q (quiet) flag which suppresses most of the output, but it still prints error messages. I'd like an entirely silent mode with no output.
My use case is byte-compiling Python files as part of a graphical installer. I do this by running:
py -${PY_QUALIFIER} -m compileall -q "$INSTDIR\pkgs"
I'd like to be able to use pyw so a terminal doesn't pop up, but if I do that, it exits early. I think this is due to the issue with stdout/stderr buffers filling up on pythonw. |
|
Date |
User |
Action |
Args |
2014-04-23 23:29:32 | takluyver | set | recipients:
+ takluyver |
2014-04-23 23:29:32 | takluyver | set | messageid: <1398295772.24.0.550494832702.issue21338@psf.upfronthosting.co.za> |
2014-04-23 23:29:32 | takluyver | link | issue21338 messages |
2014-04-23 23:29:31 | takluyver | create | |
|