Add the rpdb debugger to the list of debugger packages

This commit is contained in:
Dan LaManna
2019-06-05 12:29:23 -04:00
parent 0b70e285e3
commit e34f0c44aa

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'))