You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm running some codon generated executables in batch mode and I realized it sends to stdout just as Python (kind of expected), that is a buffered output. I know in Python I can run a script using the -u switch to have unbuffered stdout, is there something similar for codon?
The text was updated successfully, but these errors were encountered:
Not yet—we can add this in the later versions (wasn't even aware of -u until now). For now, you'll have to flush the stdout manually (stdout.flush() should work) or use stderr.
I'm running some codon generated executables in batch mode and I realized it sends to stdout just as Python (kind of expected), that is a buffered output. I know in Python I can run a script using the
-u
switch to have unbuffered stdout, is there something similar for codon?The text was updated successfully, but these errors were encountered: