Merge pull request #389 from danlamanna/add-rpdb-to-list-of-debuggers

Add the rpdb debugger to the list of debugger packages
This commit is contained in:
Anthony Sottile 2019-06-15 17:17:37 -07:00 committed by GitHub
commit 9ce6b9facb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -10,7 +10,7 @@ from typing import Optional
from typing import Sequence
DEBUG_STATEMENTS = {'pdb', 'ipdb', 'pudb', 'q', 'rdb'}
DEBUG_STATEMENTS = {'pdb', 'ipdb', 'pudb', 'q', 'rdb', 'rpdb'}
Debug = collections.namedtuple('Debug', ('line', 'col', 'name', 'reason'))