Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

🔨 disable a feature as a temporary workaround #852

Merged
merged 1 commit into from
Feb 21, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 7 additions & 6 deletions src/client/debugger/mainV2.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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');
Expand Down Expand Up @@ -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',
Expand Down