From 63280be2279484fae9d0d61c5b94576a36b9c693 Mon Sep 17 00:00:00 2001 From: Anthony Kim <62267334+anthonykim1@users.noreply.github.com> Date: Thu, 19 Sep 2024 18:49:25 -0400 Subject: [PATCH] Default PYTHONSTARTUP to opt out/off for Stable Release (#24140) From discussion in the original issue: https://github.com/microsoft/vscode-python/issues/23930#issuecomment-2362192346 Making default to be false for September stable, perhaps we could turn it on to true for insiders AFTER once we ship out stable. /cc @Tyriar --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 3b1518f40121..f02bb2bf2e01 100644 --- a/package.json +++ b/package.json @@ -658,7 +658,7 @@ "type": "array" }, "python.REPL.enableShellIntegration": { - "default": true, + "default": false, "description": "%python.REPL.enableShellIntegration.description%", "scope": "resource", "type": "boolean"