1 parent e0f1d3c commit 8314cd4Copy full SHA for 8314cd4
1 file changed
src/client/terminals/pythonStartup.ts
@@ -22,8 +22,6 @@ async function applyPythonStartupSetting(context: ExtensionContext): Promise<voi
22
const sourcePath = path.join(EXTENSION_ROOT_DIR, 'python_files', 'pythonrc.py');
23
await copy(Uri.file(sourcePath), destPath, { overwrite: true });
24
context.environmentVariableCollection.replace('PYTHONSTARTUP', destPath.fsPath);
25
- // When shell integration is enabled, we disable PyREPL from cpython.
26
- context.environmentVariableCollection.replace('PYTHON_BASIC_REPL', '1');
27
context.environmentVariableCollection.description = new MarkdownString(
28
Interpreters.shellIntegrationEnvVarCollectionDescription,
29
);
0 commit comments