Antonio

Results 26 comments of Antonio

Ran the commands as specified, seems like I was able to reproduce it. Here is an excerpt: ``` 135887165 function calls (125297436 primitive calls) in 416.767 seconds Ordered by: internal...

I ran pylint 3.1.0dev0 over the following code and got W1041 (anomalous-backslash-in-string) so it seems this has been fixed in pylint 3? I get no syntax warning on the output....

This not only happens on autotools Makefiles, but as far as I can see on any file that does not have `.test` under `.PHONY` For example this Makefile also generates...

Also happening to me. The unshallow step fixed it for me. Maybe we can add a flag to skip change log generation so that shallow clones work?

The cache feels dirty but `lru_cache` and its siblings force you to cache the whole thing which is impossible (lists can't be hashed) and feels redundant, if I already have...

I also obtained this call graph to find the best place to cache. The issue refers to `find_module` but I thought it was better to cache up the stack in...

Also, I used the repository linked in the issue to obtain all the profiling data. I am still yet to profile the memory allocated for the process execution, will try...

> Thank you for the analysis of what need to be cachec. Any reason not to use `functools.cache`or `functools.lru_cache` instead of using a global ? I really wanted to use...

I tried the approach but It does not seem to work, main reason being that `find_spec` uses lists, so wrapping the function to pass it a tuple in order to...

I think I was able to find a solution that lets us use `lru_cache` without getting into too much decorators or sub functions. I have basically wrapped the arguments in...