From e5e02caa78dfc8d0d11f8380f9786fd7a0026386 Mon Sep 17 00:00:00 2001 From: Don Jayamanne Date: Wed, 21 Feb 2018 13:55:35 -0800 Subject: [PATCH] :hammer: disable a feature as a temporary workaround --- src/client/debugger/mainV2.ts | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/src/client/debugger/mainV2.ts b/src/client/debugger/mainV2.ts index 5bd97af252cc..39d5248a6f21 100644 --- a/src/client/debugger/mainV2.ts +++ b/src/client/debugger/mainV2.ts @@ -3,7 +3,7 @@ 'use strict'; -// tslint:disable:no-any max-func-body-length no-empty no-require-imports no-var-requires +// tslint:disable:no-any max-func-body-length no-empty no-require-imports no-var-requires no-suspicious-comment if ((Reflect as any).metadata === undefined) { require('reflect-metadata'); @@ -64,11 +64,12 @@ export class PythonDebugger extends DebugSession { body.supportsSetVariable = true; body.supportsExceptionOptions = true; body.exceptionBreakpointFilters = [ - { - filter: 'raised', - label: 'Raised Exceptions', - default: false - }, + // TODO: Temporary workaround for PTVSD #85 + // { + // filter: 'raised', + // label: 'Raised Exceptions', + // default: false + // }, { filter: 'uncaught', label: 'Uncaught Exceptions',