Today users can change console names manually after executing their code

I want to be able to change the console name before I launch my application using the launch.json configuration file
for example:
{
"version": "0.2.0",
"configurations": [
{
"name": "Module Name",
"type": "python",
"request": "launch",
"module": "path.to.module",
"consoleName": "My Console Name" // or apply the name of the module automatically
}
]
}
The team at Vascode has introduced support for this feature, but its implementation is also required in the Python extension.
microsoft/vscode#128108 (comment)
Today users can change console names manually after executing their code
I want to be able to change the console name before I launch my application using the launch.json configuration file
for example:
{ "version": "0.2.0", "configurations": [ { "name": "Module Name", "type": "python", "request": "launch", "module": "path.to.module", "consoleName": "My Console Name" // or apply the name of the module automatically } ] }The team at Vascode has introduced support for this feature, but its implementation is also required in the Python extension.
microsoft/vscode#128108 (comment)