Sümer Cip
Sümer Cip
Hey Andreas, I understand it is a reasonable/practical request to identify caller/callee relationships between coroutines. However, the issue is `asyncio.gather` adds a done_callback to the loop and returns back a...
> Do you think there is a chance a monkey-patched gather putting hints in a contextvar in combination with set_tag_callback might leave enough information to clean the callgraph in a...
If you are using the latest master branch, please get it like: `yappi.get_func_stats(tag=xxxx)` But the problem seems to be different in your case, are you sure you set correct tag...
The correct/fastest way to retrieve per-tag func stats is like: `yappi.get_func_stats({tag:xxx})` as it happens entirely on C. The other version `[fs for fs in stats if fs.tag == 1]` will...
> Sorry to bother you again, Not at all :) > Shouldn't comparison take tag into account as well I forgot to mention that it is not possible to traverse...
First: Wow! Congrats on this! Now I would like to help you on this but I think this is not something I can include in Yappi for the time being....
Closing this issue as there is no progress.
Hi @Suhail-MOHD. It would be awesome if you can do it. I will feel more confident :)
Sure. Whenever you like. Thanks for notifying :)
Hi. Just writing a quick answer in a bit hurry but did you happen to check this issue -> https://github.com/sumerc/yappi/issues/45