Skip to content

Commit 7440079

Browse files
committed
Minor update to embedded python shells docs
1 parent bd1c666 commit 7440079

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

docs/features/embedded_python_shells.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -126,10 +126,12 @@ IPython_ provides many advantages, including:
126126
* Get help on objects with ``?``
127127
* Extensible tab completion, with support by default for completion of
128128
python variables and keywords
129+
* Good built-in ipdb_ debugger
129130

130131
The object introspection and tab completion make IPython particularly efficient
131132
for debugging as well as for interactive experimentation and data analysis.
132133

133134
.. _IPython: http://ipython.readthedocs.io
135+
.. _ipdb: https://pypi.org/project/ipdb/
134136

135137

examples/python_scripting.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323

2424
class CmdLineApp(cmd2.Cmd):
25-
""" Example cmd2 application to showcase conditional control flow in Python scripting within cmd2 aps. """
25+
""" Example cmd2 application to showcase conditional control flow in Python scripting within cmd2 apps."""
2626

2727
def __init__(self):
2828
# Enable the optional ipy command if IPython is installed by setting use_ipython=True

0 commit comments

Comments
 (0)