Quentin Peter

Results 103 comments of Quentin Peter

This is what I have with `elusiveicons`: We could remove it from the list of options maybe?

See https://github.com/spyder-ide/spyder/issues/18581

I can get it to work by replacing: https://github.com/opencv/opencv/blob/17234f82d025e3bbfbf611089637e5aa2038e7b8/modules/python/package/cv2/__init__.py#L92 by: `l_vars = locals().copy()` The doc of locals might give a guess as to why that works: ``` Return a dictionary...

From the doc (https://docs.python.org/3/library/functions.html#locals): "`The contents of this dictionary should not be modified`". The way I interpret this is that modifying `l_vars` is undefined behaviour. I understand that ipython is...

Not exactly a benchmark, but I have one function that went from 16s to 2s execution

Looks good to me now. Do you see that the delay issue has been resolved?

I guess the argument would be: what should we do if the user pastes a file in the wd box? I think that in that case, the most useful result...

> @impact27, I think you need to rewrite this work on top of the new Run architecture defined in PR #17467, which I just merged. > > Sorry for the...

I used the new Run architecture but I find it a bit confusing. If I want to switch from regular execute to profiling I have to go to the setting...