diff options
author | Ken Manheimer <klm@digicool.com> | 2003-05-01 21:07:32 +0000 |
---|---|---|
committer | Ken Manheimer <klm@digicool.com> | 2003-05-01 21:07:32 +0000 |
commit | b85e4ec1da1b1002fa6f8100f7d63b4629ee4a21 (patch) | |
tree | 61139d1c77f4047f3031a5960f5c1f9d2176b857 /Misc/python-mode.el | |
parent | 23bf2d6f8ea8b4ce2d6c1159b96554c490bcb10b (diff) | |
download | cpython-b85e4ec1da1b1002fa6f8100f7d63b4629ee4a21.tar.gz |
Slightly more lenient pdbtrack prompt recognition, for people who use
eg "pdb>".
Diffstat (limited to 'Misc/python-mode.el')
-rw-r--r-- | Misc/python-mode.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Misc/python-mode.el b/Misc/python-mode.el index 696ded92a9..61e4f46d17 100644 --- a/Misc/python-mode.el +++ b/Misc/python-mode.el @@ -483,7 +483,7 @@ prospect as debugging continues.") "^> \\(.*\\)(\\([0-9]+\\))\\([?a-zA-Z0-9_]+\\)()" "Regular expression pdbtrack uses to find a stack trace entry.") -(defconst py-pdbtrack-input-prompt "\n[(<]+pdb[>)]+ " +(defconst py-pdbtrack-input-prompt "\n[(<]*pdb[>)]+ " "Regular expression pdbtrack uses to recognize a pdb prompt.") (defconst py-pdbtrack-track-range 10000 |