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
From a comment on the coverage page:
It seems that the recursion limit statement does not work when executed in coverage 3.0, like in this sample code:
#!python import sys sys.setrecursionlimit(2500) def add1(number = 0): number = number + 1 if(number < 2000):add1(number) if __name__ == '__main__': add1()
Thanks.
The text was updated successfully, but these errors were encountered:
The problem isn't setrecusionlimit, it's the depth checker in tracer.c: it's off by one (or two).
Sorry, something went wrong.
Fixed in <<changeset 2c62966facd1 (bb)>>
Added support for subprocesses
5847c61
Fixes nedbat#9.
No branches or pull requests
From a comment on the coverage page:
It seems that the recursion limit statement does not work when executed in coverage 3.0, like in this sample code:
Thanks.
The text was updated successfully, but these errors were encountered: