From f09f0c4e80a977aedb512778bb631456e1393430 Mon Sep 17 00:00:00 2001 From: Eleanor Boyd Date: Thu, 19 Jan 2023 14:17:32 -0800 Subject: [PATCH 1/3] Update python-web.md --- docs/python/python-web.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/python/python-web.md b/docs/python/python-web.md index f55bbd07a3..7bb27abb28 100644 --- a/docs/python/python-web.md +++ b/docs/python/python-web.md @@ -9,7 +9,7 @@ MetaDescription: Run and Debug Python code in the Web. --- # Run and Debug Python in the Web -We are happy to announce experimental support for running Python code on the Web. To try it out, install the latest pre-release version of the [Experimental - Python for the Web](https://marketplace.visualstudio.com/items?itemName=ms-vscode.vscode-python-web-wasm) extension from the Marketplace. +We are happy to announce **experimental** support for running Python code on the Web. To try it out, install the latest pre-release version of the [Experimental - Python for the Web](https://marketplace.visualstudio.com/items?itemName=ms-vscode.vscode-python-web-wasm) extension from the Marketplace. This work is based on WASM in Python which is currently in development, to learn more about how it works and the ongoing progress you can check [here](https://pythondev.readthedocs.io/wasm.html). ## Prerequisites @@ -19,8 +19,8 @@ The following prerequisites are needed to use the extension: * You need to authenticate with GitHub. * You need to use a browser that supports [cross-origin isolation](https://developer.chrome.com/docs/extensions/mv3/cross-origin-isolation/). The extension has been tested with the Microsoft Edge and Google Chrome browsers. * You need to use the insider version of [VS Code for the Web](/docs/editor/vscode-web.md) (e.g. `https://insiders.vscode.dev/`) -* Your source code must either be hosted on a GitHub repository and accessed through the GitHub Repositories extension, or on your local file system. -* When starting [VS Code for the Web](/docs/editor/vscode-web.md), you need to add the following query parameter to the URL: `?vscode-coi=`. +* Your source code must either be hosted on on your local file system or a GitHub repository that is accessed through the GitHub Repositories extension. +* When starting [VS Code for the Web](/docs/editor/vscode-web.md), you need to add the following query parameter to the end of the URL: `?vscode-coi=`. ## Run Hello World @@ -36,7 +36,7 @@ The extension comes with an integrated Python REPL. To activate it, run the comm ## Debugging -There is support for debugging Python files on the Web. The features currently supported are: +There is support for debugging Python files on the Web which has the same UI as the desktop VS Code outlined [here](https://code.visualstudio.com/docs/python/debugging). The features currently supported are: * Set breakpoints * Step into and out of functions From e96ed674fb82d4e0910e340db830dd54d6daaccb Mon Sep 17 00:00:00 2001 From: Greg Van Liew Date: Thu, 19 Jan 2023 18:08:46 -0800 Subject: [PATCH 2/3] Small updates --- docs/python/python-web.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/python/python-web.md b/docs/python/python-web.md index 7bb27abb28..77c2e5d758 100644 --- a/docs/python/python-web.md +++ b/docs/python/python-web.md @@ -9,7 +9,7 @@ MetaDescription: Run and Debug Python code in the Web. --- # Run and Debug Python in the Web -We are happy to announce **experimental** support for running Python code on the Web. To try it out, install the latest pre-release version of the [Experimental - Python for the Web](https://marketplace.visualstudio.com/items?itemName=ms-vscode.vscode-python-web-wasm) extension from the Marketplace. This work is based on WASM in Python which is currently in development, to learn more about how it works and the ongoing progress you can check [here](https://pythondev.readthedocs.io/wasm.html). +We are happy to announce **experimental** support for running Python code on the Web. To try it out, install the latest pre-release version of the [Experimental - Python for the Web](https://marketplace.visualstudio.com/items?itemName=ms-vscode.vscode-python-web-wasm) extension from the Marketplace. This work is based on WASM in Python, which is currently in development. To learn more about how it works and the ongoing progress, you can check on [Compiling Python to WebAssembly (WASM)](https://pythondev.readthedocs.io/wasm.html). ## Prerequisites @@ -18,7 +18,7 @@ The following prerequisites are needed to use the extension: * You need to have the [GitHub Repositories](https://marketplace.visualstudio.com/items?itemName=GitHub.remotehub) extension installed. * You need to authenticate with GitHub. * You need to use a browser that supports [cross-origin isolation](https://developer.chrome.com/docs/extensions/mv3/cross-origin-isolation/). The extension has been tested with the Microsoft Edge and Google Chrome browsers. -* You need to use the insider version of [VS Code for the Web](/docs/editor/vscode-web.md) (e.g. `https://insiders.vscode.dev/`) +* You need to use the insider version of [VS Code for the Web](/docs/editor/vscode-web.md) (for example `https://insiders.vscode.dev/`) * Your source code must either be hosted on on your local file system or a GitHub repository that is accessed through the GitHub Repositories extension. * When starting [VS Code for the Web](/docs/editor/vscode-web.md), you need to add the following query parameter to the end of the URL: `?vscode-coi=`. @@ -36,7 +36,7 @@ The extension comes with an integrated Python REPL. To activate it, run the comm ## Debugging -There is support for debugging Python files on the Web which has the same UI as the desktop VS Code outlined [here](https://code.visualstudio.com/docs/python/debugging). The features currently supported are: +There is support for debugging Python files on the Web and it uses the same UI as VS Code Desktop [debugging](/docs/python/debugging.md). The features currently supported are: * Set breakpoints * Step into and out of functions From 79e6adfa22d1f6cd0118108ff6fe08b78d7de418 Mon Sep 17 00:00:00 2001 From: Greg Van Liew Date: Thu, 19 Jan 2023 18:12:09 -0800 Subject: [PATCH 3/3] typo --- docs/python/python-web.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/python/python-web.md b/docs/python/python-web.md index 77c2e5d758..d9cee5fc5f 100644 --- a/docs/python/python-web.md +++ b/docs/python/python-web.md @@ -9,7 +9,7 @@ MetaDescription: Run and Debug Python code in the Web. --- # Run and Debug Python in the Web -We are happy to announce **experimental** support for running Python code on the Web. To try it out, install the latest pre-release version of the [Experimental - Python for the Web](https://marketplace.visualstudio.com/items?itemName=ms-vscode.vscode-python-web-wasm) extension from the Marketplace. This work is based on WASM in Python, which is currently in development. To learn more about how it works and the ongoing progress, you can check on [Compiling Python to WebAssembly (WASM)](https://pythondev.readthedocs.io/wasm.html). +We are happy to announce **experimental** support for running Python code on the Web. To try it out, install the latest pre-release version of the [Experimental - Python for the Web](https://marketplace.visualstudio.com/items?itemName=ms-vscode.vscode-python-web-wasm) extension from the Marketplace. This work is based on WASM in Python, which is currently in development. To learn more about how it works and the ongoing progress, you can read [Compiling Python to WebAssembly (WASM)](https://pythondev.readthedocs.io/wasm.html). ## Prerequisites