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
When I have "sum" of a generator expression, e.g.
import yappi event = "minimal_example" yappi.clear_stats() yappi.start() def f(): a = sum(x for x in range(10)) f() yappi.stop() minimal_example_stats = yappi.get_func_stats() minimal_example_stats._save_as_PSTAT(f"{event}.pstat")
the generator expression gets its own node. However it is not a child of the "f" node.
I would say that it should be. E.g. if I change "sum" to "set" it is.
The text was updated successfully, but these errors were encountered:
sumerc
No branches or pull requests
When I have "sum" of a generator expression, e.g.
the generator expression gets its own node. However it is not a child of the "f" node.
I would say that it should be.
E.g. if I change "sum" to "set" it is.
The text was updated successfully, but these errors were encountered: