Workaround for double semicolon in strings

see https://github.com/gotcha/ipdb/issues/172
This commit is contained in:
Godefroid Chapelle 2019-10-31 12:27:13 +01:00 committed by GitHub
parent 65c7382c47
commit c5fbccf31a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -234,7 +234,8 @@ Multiple commands may be entered on a single line, separated by ``;;``. (A
single ``;`` is not used as it is the separator for multiple commands in a line
that is passed to the Python parser.) No intelligence is applied to separating
the commands; the input is split at the first ``;;`` pair, even if it is in the
middle of a quoted string.
middle of a quoted string. To be able to use a string with double semi-colon,
use the following workaround: ``';'';'`` or ``";"";"``.
.. index::
pair: .pdbrc; file