The Python Debugger extension does not export its API. This blocks the Docker extension from debugging using the new debugpy launch configuration. (Blocking microsoft/vscode-docker#4221)
See
|
export async function activate(context: IExtensionContext): Promise<void> { |
It returns Promise<void>. Compare to https://github.com/microsoft/vscode-python/blob/c0bf1b73b608d1c11b04f18966177335faea74b4/src/client/extension.ts#L61 in the current Python extension which does return its API.
The Python Debugger extension does not export its API. This blocks the Docker extension from debugging using the new
debugpylaunch configuration. (Blocking microsoft/vscode-docker#4221)See
vscode-python-debugger/src/extension/extension.ts
Line 21 in 1cce48c
It returns
Promise<void>. Compare to https://github.com/microsoft/vscode-python/blob/c0bf1b73b608d1c11b04f18966177335faea74b4/src/client/extension.ts#L61 in the current Python extension which does return its API.