optimizations for traceback

This commit is contained in:
Will McGugan 2021-01-23 14:30:54 +00:00
parent 3a8ab02d78
commit 449c1fbb29
9 changed files with 3511 additions and 92 deletions

View file

@ -104,7 +104,12 @@ To display a status message, call :meth:`~rich.console.Console.status` with the
with console.status("Working...")
do_work()
You can change the spinner animation via the ``spinner`` parameter. Run the following command to see the available choices::
You can change the spinner animation via the ``spinner`` parameter::
with console.status("Monkeying around...", spinner="monkey"):
do_work
Run the following command to see the available choices for ``spinner``::
python -m rich.spinner