You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Python version (& distribution if applicable, e.g. Anaconda): 3.12.2(conda 24.3.0)
Using VS Code or Visual Studio: VS Code 1.88.0
Actual behavior
import akshare as ak
After I upgrade to python 3.12.2, the above sentence blocks the python debugger(other imports work), and "Run Without Debugging" works. It worked well before.
When I use following command to run python debugger in cmd, it works well
pytyon -m pdb run.py
So I think it's a bug of debugger extension of vscode instead of akshare lib.
And the owner of akshare lib suggested me to use pycharm instead of vscode to get around this issue, it costs a lot for me.
Expected behavior
"import akshare as ak" doesn't block debugger extension of vscode.
Steps to reproduce:
create the following run.py file:
import akshare as ak
if __name__ == "__main__":
print("it works")
start debug, the process will be blocked. start "Debug Without Debugging", it works.
remove the line: import akshare as ak, everything works well.
The text was updated successfully, but these errors were encountered:
Environment data
Actual behavior
After I upgrade to python 3.12.2, the above sentence blocks the python debugger(other imports work), and "Run Without Debugging" works. It worked well before.
When I use following command to run python debugger in cmd, it works well
So I think it's a bug of debugger extension of vscode instead of akshare lib.
And the owner of akshare lib suggested me to use pycharm instead of vscode to get around this issue, it costs a lot for me.
Expected behavior
"import akshare as ak" doesn't block debugger extension of vscode.
Steps to reproduce:
start debug, the process will be blocked. start "Debug Without Debugging", it works.
remove the line: import akshare as ak, everything works well.
The text was updated successfully, but these errors were encountered: