How can I limit the error traceback to N exceptions in IPython (specifically, I need just one)?
I saw a working solution for displaying just the ultimate error here How to hide the error traceback in Jupyter Lab/Notebook?, but its backside is that I usually just not pay attention to such a small response and go on with running cells, so it would be better to visualise the last exception.
I have also seen this solution How to limit python traceback to specific files with displaying only exceptions that belong to my code, but as even the previously mentioned post states, this is just not working in Python 3.
Thanks in advance for any recommendations.