I am using Spyder
When I write these lines :
import ipdb;
ipdb.set_trace()
When I press n the program always returns me to the following interactive shell error
--Return--
None
> <ipython-input-1-606cc96bec96>(7)<module>()
6
----> 7 import ipdb; ipdb.set_trace()
8
ipdb> n
> /home/***/anaconda3/envs/***/lib/python3.7/site-packages/IPython/core/interactiveshell.py(3329)run_code()
3328 # Reset our crash handler in place
-> 3329 sys.excepthook = old_excepthook
3330 except SystemExit as e:
ipdb>
If I run this same script from the Ubuntu console it works correctly.
Why it doesn't it work in my Spyder program ?