From 6e4a69cc62aff29b032e86b2de0b2c0609c03d5d Mon Sep 17 00:00:00 2001 From: Paula Camargo Date: Fri, 26 May 2023 11:19:51 -0700 Subject: [PATCH 1/9] Update README --- README.md | 36 +++++++++++------------------------- 1 file changed, 11 insertions(+), 25 deletions(-) diff --git a/README.md b/README.md index 5cd7cecf..aaab667c 100644 --- a/README.md +++ b/README.md @@ -1,33 +1,19 @@ -# Project +# Debugpy extension for Visual Studio Code -> This repo has been populated by an initial template to help get you started. Please -> make sure to update the content to build a great experience for community-building. +A Visual Studio Code extension that supports debugging of several types of Python applications.Debug your Python scripts, web apps, remote or multi-threaded processes -As the maintainer of this project, please make a few updates: +## Usage -- Improving this README.MD file to provide a great experience -- Updating SUPPORT.MD with content about this project's support experience -- Understanding the security reporting process in SECURITY.MD -- Remove this section from the README +Once installed in Visual Studio Code, debugpy will be automatically executed when you open a Python file. -## Contributing +If you want to disable debugpy, you can [disable this extension](https://code.visualstudio.com/docs/editor/extension-marketplace#_disable-an-extension) per workspace in Visual Studio Code. -This project welcomes contributions and suggestions. Most contributions require you to agree to a -Contributor License Agreement (CLA) declaring that you have the right to, and actually do, grant us -the rights to use your contribution. For details, visit https://cla.opensource.microsoft.com. +## Commands -When you submit a pull request, a CLA bot will automatically determine whether you need to provide -a CLA and decorate the PR appropriately (e.g., status check, comment). Simply follow the instructions -provided by the bot. You will only need to do this once across all repos using our CLA. +| Command | Description | +| ---------------------- | --------------------------------- | +| Debugpy: viewOutput | Show the debugpy ectension output. | -This project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). -For more information see the [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or -contact [opencode@microsoft.com](mailto:opencode@microsoft.com) with any additional questions or comments. +| Debugpy: clearCacheAndReload | Allows you to clear the global values set in the extension. | -## Trademarks - -This project may contain trademarks or logos for projects, products, or services. Authorized use of Microsoft -trademarks or logos is subject to and must follow -[Microsoft's Trademark & Brand Guidelines](https://www.microsoft.com/en-us/legal/intellectualproperty/trademarks/usage/general). -Use of Microsoft trademarks or logos in modified versions of this project must not cause confusion or imply Microsoft sponsorship. -Any use of third-party trademarks or logos are subject to those third-party's policies. +| Debugpy: debugInTerminal | Allows you to debug a simple python file in the terminal. | From bb0687e691cc362b1f0a94ee493739452a4bf33a Mon Sep 17 00:00:00 2001 From: Courtney Webster <60238438+cwebster-99@users.noreply.github.com> Date: Fri, 26 May 2023 15:16:00 -0500 Subject: [PATCH 2/9] Apply suggestions from code review --- README.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index aaab667c..8401bd9d 100644 --- a/README.md +++ b/README.md @@ -6,14 +6,13 @@ A Visual Studio Code extension that supports debugging of several types of Pytho Once installed in Visual Studio Code, debugpy will be automatically executed when you open a Python file. +## Disabling the debugpy extension If you want to disable debugpy, you can [disable this extension](https://code.visualstudio.com/docs/editor/extension-marketplace#_disable-an-extension) per workspace in Visual Studio Code. ## Commands | Command | Description | | ---------------------- | --------------------------------- | -| Debugpy: viewOutput | Show the debugpy ectension output. | - +| Debugpy: viewOutput | Show the debugpy extension output. | | Debugpy: clearCacheAndReload | Allows you to clear the global values set in the extension. | - | Debugpy: debugInTerminal | Allows you to debug a simple python file in the terminal. | From 84060a44ccd62562d0637ce6ea0c8385ed502186 Mon Sep 17 00:00:00 2001 From: paulacamargo25 Date: Fri, 26 May 2023 13:25:52 -0700 Subject: [PATCH 3/9] Update README.md Co-authored-by: Courtney Webster <60238438+cwebster-99@users.noreply.github.com> --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 8401bd9d..e03121f3 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ A Visual Studio Code extension that supports debugging of several types of Pytho ## Usage -Once installed in Visual Studio Code, debugpy will be automatically executed when you open a Python file. +Once installed in Visual Studio Code, debugpy will be automatically activated when you open a Python file. ## Disabling the debugpy extension If you want to disable debugpy, you can [disable this extension](https://code.visualstudio.com/docs/editor/extension-marketplace#_disable-an-extension) per workspace in Visual Studio Code. From 85594d3e19d01244564b994beb079cd3eba674bc Mon Sep 17 00:00:00 2001 From: paulacamargo25 Date: Fri, 26 May 2023 13:26:15 -0700 Subject: [PATCH 4/9] Update README.md Co-authored-by: Courtney Webster <60238438+cwebster-99@users.noreply.github.com> --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index e03121f3..d3565f4a 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ A Visual Studio Code extension that supports debugging of several types of Pytho Once installed in Visual Studio Code, debugpy will be automatically activated when you open a Python file. -## Disabling the debugpy extension +## Disabling the Debugpy extension If you want to disable debugpy, you can [disable this extension](https://code.visualstudio.com/docs/editor/extension-marketplace#_disable-an-extension) per workspace in Visual Studio Code. ## Commands From bc981c4df54ddfd867f0e317cd6e263002033a7c Mon Sep 17 00:00:00 2001 From: paulacamargo25 Date: Fri, 26 May 2023 13:26:27 -0700 Subject: [PATCH 5/9] Update README.md Co-authored-by: Courtney Webster <60238438+cwebster-99@users.noreply.github.com> --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index d3565f4a..67aa08d9 100644 --- a/README.md +++ b/README.md @@ -15,4 +15,4 @@ If you want to disable debugpy, you can [disable this extension](https://code.vi | ---------------------- | --------------------------------- | | Debugpy: viewOutput | Show the debugpy extension output. | | Debugpy: clearCacheAndReload | Allows you to clear the global values set in the extension. | -| Debugpy: debugInTerminal | Allows you to debug a simple python file in the terminal. | +| Debugpy: debugInTerminal | Allows you to debug a simple Python file in the terminal. | From 8843204aca5bc15c99662c42eaa5d7a4f6e7dc7e Mon Sep 17 00:00:00 2001 From: paulacamargo25 Date: Fri, 26 May 2023 14:11:38 -0700 Subject: [PATCH 6/9] Update README.md Co-authored-by: Courtney Webster <60238438+cwebster-99@users.noreply.github.com> --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 67aa08d9..8d236b90 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ A Visual Studio Code extension that supports debugging of several types of Pytho Once installed in Visual Studio Code, debugpy will be automatically activated when you open a Python file. ## Disabling the Debugpy extension -If you want to disable debugpy, you can [disable this extension](https://code.visualstudio.com/docs/editor/extension-marketplace#_disable-an-extension) per workspace in Visual Studio Code. +If you want to disable the Debugpy extension, you can [disable this extension](https://code.visualstudio.com/docs/editor/extension-marketplace#_disable-an-extension) per workspace in Visual Studio Code. ## Commands From fa922cfd9d348d07639a46615b1a7184cbc9378b Mon Sep 17 00:00:00 2001 From: paulacamargo25 Date: Fri, 26 May 2023 14:12:11 -0700 Subject: [PATCH 7/9] Update README.md Co-authored-by: Courtney Webster <60238438+cwebster-99@users.noreply.github.com> --- README.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 8d236b90..7f317095 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,10 @@ # Debugpy extension for Visual Studio Code -A Visual Studio Code extension that supports debugging of several types of Python applications.Debug your Python scripts, web apps, remote or multi-threaded processes +A [Visual Studio Code(https://code.visualstudio.com/) [extension](https://marketplace.visualstudio.com/VSCode) that supports Python debugging with debugpy. debugpy provides a seamless debugging experience by allowing you to set breakpoints, step through code, inspect variables, and perform other essential debugging tasks. The debugy extension offers debugging support for various types of Python applications including scripts, web applications, remote processes, and multi-threaded processes. + +Note: +- The Python extension offers the debugpy extension as an optional installation, including it during the setup process. +- This extension is supported for all [actively supported versions](https://devguide.python.org/#status-of-python-branches) of the Python language (i.e., Python >= 3.7). ## Usage From d60318f6532ca9d6b7d87e712daba8f709de5217 Mon Sep 17 00:00:00 2001 From: paulacamargo25 Date: Mon, 5 Jun 2023 09:23:18 -0700 Subject: [PATCH 8/9] Update README.md Co-authored-by: Luciana Abud <45497113+luabud@users.noreply.github.com> --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 7f317095..e4c0ba40 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Debugpy extension for Visual Studio Code -A [Visual Studio Code(https://code.visualstudio.com/) [extension](https://marketplace.visualstudio.com/VSCode) that supports Python debugging with debugpy. debugpy provides a seamless debugging experience by allowing you to set breakpoints, step through code, inspect variables, and perform other essential debugging tasks. The debugy extension offers debugging support for various types of Python applications including scripts, web applications, remote processes, and multi-threaded processes. +A [Visual Studio Code](https://code.visualstudio.com/) [extension](https://marketplace.visualstudio.com/VSCode) that supports Python debugging with debugpy. debugpy provides a seamless debugging experience by allowing you to set breakpoints, step through code, inspect variables, and perform other essential debugging tasks. The debugy extension offers debugging support for various types of Python applications including scripts, web applications, remote processes, and multi-threaded processes. Note: - The Python extension offers the debugpy extension as an optional installation, including it during the setup process. From 02b6a5ddf98a2ada26ca3c1c0575726d0e701dbf Mon Sep 17 00:00:00 2001 From: paulacamargo25 Date: Mon, 5 Jun 2023 09:23:27 -0700 Subject: [PATCH 9/9] Update README.md Co-authored-by: Luciana Abud <45497113+luabud@users.noreply.github.com> --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index e4c0ba40..960278fc 100644 --- a/README.md +++ b/README.md @@ -20,3 +20,6 @@ If you want to disable the Debugpy extension, you can [disable this extension](h | Debugpy: viewOutput | Show the debugpy extension output. | | Debugpy: clearCacheAndReload | Allows you to clear the global values set in the extension. | | Debugpy: debugInTerminal | Allows you to debug a simple Python file in the terminal. | + +## Data and telemetry +The Debubpy Extension for Visual Studio Code collects usage data and sends it to Microsoft to help improve our products and services. Read our [privacy statement](https://privacy.microsoft.com/privacystatement) to learn more. This extension respects the `telemetry.enableTelemetry` setting which you can learn more about at https://code.visualstudio.com/docs/supporting/faq#_how-to-disable-telemetry-reporting.