File tree Expand file tree Collapse file tree 1 file changed +7
-6
lines changed Expand file tree Collapse file tree 1 file changed +7
-6
lines changed Original file line number Diff line number Diff line change 3
3
4
4
'use strict' ;
5
5
6
- // tslint:disable:no-any max-func-body-length no-empty no-require-imports no-var-requires
6
+ // tslint:disable:no-any max-func-body-length no-empty no-require-imports no-var-requires no-suspicious-comment
7
7
8
8
if ( ( Reflect as any ) . metadata === undefined ) {
9
9
require ( 'reflect-metadata' ) ;
@@ -64,11 +64,12 @@ export class PythonDebugger extends DebugSession {
64
64
body . supportsSetVariable = true ;
65
65
body . supportsExceptionOptions = true ;
66
66
body . exceptionBreakpointFilters = [
67
- {
68
- filter : 'raised' ,
69
- label : 'Raised Exceptions' ,
70
- default : false
71
- } ,
67
+ // TODO: Temporary workaround for PTVSD #85
68
+ // {
69
+ // filter: 'raised',
70
+ // label: 'Raised Exceptions',
71
+ // default: false
72
+ // },
72
73
{
73
74
filter : 'uncaught' ,
74
75
label : 'Uncaught Exceptions' ,
You can’t perform that action at this time.
0 commit comments