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
When running the following script
import superimport import pdb; pdb.set_trace
I get the following message from superimport
superimport
ERROR: superimport : missing python module: pdb; pdb Trying try to install automatcially WARNING:root:Package was not found in the reverse index, trying pypi. WARNING:root:Failed to install pdb; pdb automatically
However, pbd is part of the Python standard library. Is this expected?
The text was updated successfully, but these errors were encountered:
When running the following script import pdb; pdb.set_trace
import pdb; pdb.set_trace
This usage patten is not supported at the moment. If you use :
import pdb pdb.set_trace
it should work.
one needs to implement this here:
superimport/superimport/superimport.py
Lines 81 to 90 in b220882
Sorry, something went wrong.
No branches or pull requests
When running the following script
I get the following message from
superimport
However, pbd is part of the Python standard library. Is this expected?
The text was updated successfully, but these errors were encountered: