From 7440079ab74b58c7809318fa951c1326b466e320 Mon Sep 17 00:00:00 2001 From: Todd Leonhardt Date: Sun, 3 Nov 2019 22:48:05 -0500 Subject: Minor update to embedded python shells docs --- docs/features/embedded_python_shells.rst | 2 ++ examples/python_scripting.py | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/features/embedded_python_shells.rst b/docs/features/embedded_python_shells.rst index 6d00536a..9d721c2c 100644 --- a/docs/features/embedded_python_shells.rst +++ b/docs/features/embedded_python_shells.rst @@ -126,10 +126,12 @@ IPython_ provides many advantages, including: * Get help on objects with ``?`` * Extensible tab completion, with support by default for completion of python variables and keywords + * Good built-in ipdb_ debugger The object introspection and tab completion make IPython particularly efficient for debugging as well as for interactive experimentation and data analysis. .. _IPython: http://ipython.readthedocs.io +.. _ipdb: https://pypi.org/project/ipdb/ diff --git a/examples/python_scripting.py b/examples/python_scripting.py index 3d0a54a9..8c680d33 100755 --- a/examples/python_scripting.py +++ b/examples/python_scripting.py @@ -22,7 +22,7 @@ from cmd2 import ansi class CmdLineApp(cmd2.Cmd): - """ Example cmd2 application to showcase conditional control flow in Python scripting within cmd2 aps. """ + """ Example cmd2 application to showcase conditional control flow in Python scripting within cmd2 apps.""" def __init__(self): # Enable the optional ipy command if IPython is installed by setting use_ipython=True -- cgit v1.2.1