Merge pull request #452 from dave1432/debug-statements-add-wdb

debug statements - add wdb
This commit is contained in:
Anthony Sottile 2020-02-18 10:16:09 -08:00 committed by GitHub
commit c7d0d3c9cc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -7,7 +7,7 @@ from typing import Optional
from typing import Sequence
DEBUG_STATEMENTS = {'pdb', 'ipdb', 'pudb', 'q', 'rdb', 'rpdb'}
DEBUG_STATEMENTS = {'pdb', 'ipdb', 'pudb', 'q', 'rdb', 'rpdb', 'wdb'}
class Debug(NamedTuple):