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
This app:
import tingbot from tingbot import * def loop(): screen.fill(color='black') screen.text('Hello world!') print 'testing...' tingbot.run(loop)
Will run for about 1 minute before logs appear in Tide.
Looks like there's a buffer somewhere that's not flushing. The following works:
import tingbot from tingbot import * import sys def loop(): screen.fill(color='black') screen.text('Hello world!') print 'testing...' sys.stdout.flush() tingbot.run(loop)
Maybe could be fixed using PYTHONUNBUFFERED, otherwise we might have to emulate a TTY.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
This app:
Will run for about 1 minute before logs appear in Tide.
Looks like there's a buffer somewhere that's not flushing. The following works:
Maybe could be fixed using PYTHONUNBUFFERED, otherwise we might have to emulate a TTY.
The text was updated successfully, but these errors were encountered: