Skip to content
Prev Previous commit
Next Next commit
Correctly indent nested code-block directive
  • Loading branch information
SnoopJ committed May 8, 2023
commit 69a5a59f2bfd816b1c5c8e9b58d038e000661da8
4 changes: 2 additions & 2 deletions Doc/library/pdb.rst
Original file line number Diff line number Diff line change
Expand Up @@ -604,7 +604,7 @@ can be overridden by the local file.
The exclamation point can be omitted unless the first word of the statement
resembles a debugger command, e.g.:

.. code-block:: none
.. code-block:: none

(Pdb) !next(some_iterator)
42
Expand All @@ -613,7 +613,7 @@ can be overridden by the local file.
To set a global variable, you can prefix the assignment command with a
:keyword:`global` statement on the same line, e.g.:

.. code-block:: none
.. code-block:: none

(Pdb) global list_options; list_options = ['-l']
(Pdb)
Expand Down