diff options
Diffstat (limited to 'lisp/progmodes/python.el')
| -rw-r--r-- | lisp/progmodes/python.el | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/lisp/progmodes/python.el b/lisp/progmodes/python.el index e672645c734..37e0ccf7198 100644 --- a/lisp/progmodes/python.el +++ b/lisp/progmodes/python.el | |||
| @@ -3747,7 +3747,7 @@ Used to extract the current line and module being inspected. | |||
| 3747 | 3747 | ||
| 3748 | Must match lines with real filename, like | 3748 | Must match lines with real filename, like |
| 3749 | > /path/to/file.py(42)<module>()->None | 3749 | > /path/to/file.py(42)<module>()->None |
| 3750 | and lines in which filename starts with '<', e.g. | 3750 | and lines in which filename starts with `<', e.g. |
| 3751 | > <stdin>(1)<module>()->None | 3751 | > <stdin>(1)<module>()->None |
| 3752 | 3752 | ||
| 3753 | In the first case /path/to/file.py file will be visited and overlay icon | 3753 | In the first case /path/to/file.py file will be visited and overlay icon |
| @@ -3762,21 +3762,21 @@ Line number is expected in the second parenthesized expression." | |||
| 3762 | :safe 'stringp) | 3762 | :safe 'stringp) |
| 3763 | 3763 | ||
| 3764 | (defcustom python-pdbtrack-continue-command '("c" "cont" "continue") | 3764 | (defcustom python-pdbtrack-continue-command '("c" "cont" "continue") |
| 3765 | "Pdb 'continue' command aliases. | 3765 | "Pdb `continue' command aliases. |
| 3766 | After one of this commands is sent to pdb, pdbtracking session is | 3766 | After one of these commands is sent to pdb, the pdbtracking session is |
| 3767 | considered over. | 3767 | considered over. |
| 3768 | 3768 | ||
| 3769 | This command is remembered by pdbtracking. If next command sent to pdb | 3769 | This command is remembered by pdbtracking. If the next command sent to pdb |
| 3770 | is empty string, it considered 'continue' command if previous command | 3770 | is the empty string, it is treated as `continue' if the previous command |
| 3771 | was 'continue'. This behavior slightly differentiate 'continue' command | 3771 | was `continue'. This behavior slightly differentiates the `continue' command |
| 3772 | from 'exit' commands listed in `python-pdbtrack-exit-command'. | 3772 | from the `exit' command listed in `python-pdbtrack-exit-command'. |
| 3773 | 3773 | ||
| 3774 | See `python-pdbtrack-activate' for pdbtracking session overview." | 3774 | See `python-pdbtrack-activate' for pdbtracking session overview." |
| 3775 | :type 'list | 3775 | :type 'list |
| 3776 | :version "27.1") | 3776 | :version "27.1") |
| 3777 | 3777 | ||
| 3778 | (defcustom python-pdbtrack-exit-command '("q" "quit" "exit") | 3778 | (defcustom python-pdbtrack-exit-command '("q" "quit" "exit") |
| 3779 | "Pdb 'exit' command aliases. | 3779 | "Pdb `exit' command aliases. |
| 3780 | After one of this commands is sent to pdb, pdbtracking session is | 3780 | After one of this commands is sent to pdb, pdbtracking session is |
| 3781 | considered over. | 3781 | considered over. |
| 3782 | 3782 | ||
| @@ -3801,7 +3801,7 @@ Never set this variable directly, use | |||
| 3801 | "List of buffers to be deleted after tracking finishes.") | 3801 | "List of buffers to be deleted after tracking finishes.") |
| 3802 | 3802 | ||
| 3803 | (defvar python-pdbtrack-prev-command-continue nil | 3803 | (defvar python-pdbtrack-prev-command-continue nil |
| 3804 | "Is t if previous pdb command was 'continue'.") | 3804 | "Is t if previous pdb command was `continue'.") |
| 3805 | 3805 | ||
| 3806 | (defun python-pdbtrack-set-tracked-buffer (file-name) | 3806 | (defun python-pdbtrack-set-tracked-buffer (file-name) |
| 3807 | "Set the buffer for FILE-NAME as the tracked buffer. | 3807 | "Set the buffer for FILE-NAME as the tracked buffer. |