please add option to use bpython to collective.recipe.zope2instance
Affects | Status | Importance | Assigned to | Milestone | |
---|---|---|---|---|---|
collective.buildout |
New
|
Undecided
|
Unassigned |
Bug Description
If the bpython module is importable (that is, it does not throw an importerror), then it should say something to the effect that bpython is available, or it should activate the bpython interpreter by default. Either would be VERY useful.
Here is an example of ctl.py with bpython interpreter by default:
def do_debug(self, arg):
try:
import bpython
except ImportError:
cmdline = self.get_
print ('Starting debugger (the name "app" is bound to the top-level '
Here is an example of ctl.py with bpython interpreter suggestion:
def do_debug(self, arg):
try:
import bpython
except ImportError:
cmdline = self.get_
print ('Starting debugger (the name "app" is bound to the top-level '
Thanks.