I've been searching for some time but couldn't find any related problem.
When using Visual Studio Code with Python extension for debugging on large elements, computing a representation or getting an attribute may take some time.
In these cases a warning like:
pydevd warning: Computing repr of ... (DataFrame) was slow (took 0.84s)
is printed to the debug console (also see https://www.pydev.org/history_pydev.html).
Even more annoying, a popup turns up on the lower left corner.
Is there any way to disable these warnings and in particular this popup concerning this warning?
I have tried more or less everything what I found with respect to logging and warning in Visual Studio Code debugging.
A minimal example would look like
import pandas as pd
df = pd.read_csv('file of 1GB')
df
The warning is not a warning on a particular line but a warning given by the debugger everytime the large object is used (e.g. just printed or with an operation df.some_operation()).