Python 3.14 NotImplementedError #1619
-
Privileged issue
Issue ContentI couldn't start discussion I am not @tiangolo sorry but I have a problem. Python 3.14 NotImplementedError Python VSCode development Enabled Breakpoints: I got exception I can't debug my code, everytime I do debug I have to disable breakpoint then run and re open again. Why library throws exception? Other libraries doesn't, also I think it started with python version 3.14 Thanks. 0.0.27, Linux, VSCode, Python 3.14 |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
|
This is absolutely normal for libraries to raise exception in one module\function and handle it in another one. You can probably use another approach - run debugging without this option, create the situation you want to debug so that the exception is raised and the traceback is printed. |
Beta Was this translation helpful? Give feedback.
This is absolutely normal for libraries to raise exception in one module\function and handle it in another one.
You can probably use another approach - run debugging without this option, create the situation you want to debug so that the exception is raised and the traceback is printed.
Look at the traceback and locate the line of code there this exception first time appears.
Set the manual breakpoint on that line.
Run debugging again and create the situation you want to debug again - it will now stop right before raising that exception