summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2021-04-29 01:09:14 (GMT)
committerGitHub <noreply@github.com>2021-04-29 01:09:14 (GMT)
commitcc1dcb6a5bff01ce73d1f836d9bb993c346900e0 (patch)
tree179d2b1e535670af6e8e9a217c3e867fe080e2e6
parentb52cc7c5f1a6c5b48d51cd718719a766c37d6e38 (diff)
downloadcpython-cc1dcb6a5bff01ce73d1f836d9bb993c346900e0.zip
cpython-cc1dcb6a5bff01ce73d1f836d9bb993c346900e0.tar.gz
cpython-cc1dcb6a5bff01ce73d1f836d9bb993c346900e0.tar.bz2
[doc] Do some polishing in IDEs section (GH-22070) (GH-25704)
(cherry picked from commit 08a4803863856db47a1dde830e56f83e5c6811a2) Co-authored-by: Andre Delfino <adelfino@gmail.com> Co-authored-by: Andre Delfino <adelfino@gmail.com>
-rw-r--r--Doc/faq/programming.rst24
1 files changed, 12 insertions, 12 deletions
diff --git a/Doc/faq/programming.rst b/Doc/faq/programming.rst
index cc597df..4caff0d 100644
--- a/Doc/faq/programming.rst
+++ b/Doc/faq/programming.rst
@@ -29,26 +29,26 @@ Python distribution (normally available as Tools/scripts/idle), includes a
graphical debugger.
PythonWin is a Python IDE that includes a GUI debugger based on pdb. The
-Pythonwin debugger colors breakpoints and has quite a few cool features such as
-debugging non-Pythonwin programs. Pythonwin is available as part of the `Python
-for Windows Extensions <https://sourceforge.net/projects/pywin32/>`__ project and
-as a part of the ActivePython distribution (see
-https://www.activestate.com/activepython\ ).
+PythonWin debugger colors breakpoints and has quite a few cool features such as
+debugging non-PythonWin programs. PythonWin is available as part of
+`pywin32 <https://github.com/mhammond/pywin32>`_ project and
+as a part of the
+`ActivePython <https://www.activestate.com/products/python/>`_ distribution.
`Eric <http://eric-ide.python-projects.org/>`_ is an IDE built on PyQt
and the Scintilla editing component.
-Pydb is a version of the standard Python debugger pdb, modified for use with DDD
-(Data Display Debugger), a popular graphical debugger front end. Pydb can be
-found at http://bashdb.sourceforge.net/pydb/ and DDD can be found at
-https://www.gnu.org/software/ddd.
+`trepan3k <https://github.com/rocky/python3-trepan/>`_ is a gdb-like debugger.
+
+`Visual Studio Code <https://code.visualstudio.com/>`_ is an IDE with debugging
+tools that integrates with version-control software.
There are a number of commercial Python IDEs that include graphical debuggers.
They include:
-* Wing IDE (https://wingware.com/)
-* Komodo IDE (https://komodoide.com/)
-* PyCharm (https://www.jetbrains.com/pycharm/)
+* `Wing IDE <https://wingware.com/>`_
+* `Komodo IDE <https://www.activestate.com/products/komodo-ide/>`_
+* `PyCharm <https://www.jetbrains.com/pycharm/>`_
Are there tools to help find bugs or perform static analysis?