We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The code is wrong.
from IPython.core.debugger import Pdb def set_trace(): Pdb(.set_trace(sys._getframe().f_back) def debug(f, *args, **kwargs): pdb = Pdb() return pdb.runcall(f, *args, **kwargs)
It should be
from IPython.core.debugger import Pdb import sys def set_trace(): Pdb.set_trace(sys._getframe().f_back) def debug(f, *arg, **kwargs): pdb = Pdb() return pdb.runcall(f, *args, **kwargs)
But even the code get repaired, there still exist a AttributeError AttributeError: 'frame' object has no attribute 'initial_frame'
AttributeError: 'frame' object has no attribute 'initial_frame'
The text was updated successfully, but these errors were encountered:
Thanks -- I will have a closer look at updating this for the latest version of Python
Sorry, something went wrong.
No branches or pull requests
The code is wrong.
It should be
But even the code get repaired, there still exist a AttributeError
AttributeError: 'frame' object has no attribute 'initial_frame'
The text was updated successfully, but these errors were encountered: