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
Currently, you must run bots locally with a tracer (when using Python 3.7 at least), which slows execution down and hinders debugging.
I hacked up my client to accept a negative opcode limit, to turn off the tracer altogether:
if opcode_limit is None: opcode_limit = utils.get_setting("botany_opcode_limit") if opcode_limit < 0: opcode_limit = None
This isn't the cleanest approach, but illustrates an approach.
The text was updated successfully, but these errors were encountered:
204c862
No branches or pull requests
Currently, you must run bots locally with a tracer (when using Python 3.7 at least), which slows execution down and hinders debugging.
I hacked up my client to accept a negative opcode limit, to turn off the tracer altogether:
This isn't the cleanest approach, but illustrates an approach.
The text was updated successfully, but these errors were encountered: