Merge pull request #502 from jgeerds/feature/catch-pydevd-pycharm-debug-statement

debug-statements: Add "pydevd_pycharm" to list of debug statements
This commit is contained in:
Anthony Sottile 2020-07-01 17:03:04 -07:00 committed by GitHub
commit 5372f44b85
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

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