diff options
author | Georg Brandl <georg@python.org> | 2014-10-29 07:55:14 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2014-10-29 07:55:14 (GMT) |
commit | 66e624b18cfdf8e4f1e2944c5c13dd096d4dc9f6 (patch) | |
tree | d0cf5b3560f4c76f59b4fe9887c264f3b7a3c022 /Doc | |
parent | 00da140c63c6c9651c96c43d4aa994a994b95cc7 (diff) | |
download | cpython-66e624b18cfdf8e4f1e2944c5c13dd096d4dc9f6.zip cpython-66e624b18cfdf8e4f1e2944c5c13dd096d4dc9f6.tar.gz cpython-66e624b18cfdf8e4f1e2944c5c13dd096d4dc9f6.tar.bz2 |
Remove now-dead link to IDLE debugger doc and add PyCharm to the commercial IDEs.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/faq/programming.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/faq/programming.rst b/Doc/faq/programming.rst index 2dfdb3e..b0234fb 100644 --- a/Doc/faq/programming.rst +++ b/Doc/faq/programming.rst @@ -23,8 +23,7 @@ for pdb as an example. The IDLE interactive development environment, which is part of the standard Python distribution (normally available as Tools/scripts/idle), includes a -graphical debugger. There is documentation for the IDLE debugger at -https://www.python.org/idle/doc/idle2.html#Debugger. +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 @@ -52,6 +51,7 @@ They include: * Wing IDE (http://wingware.com/) * Komodo IDE (http://www.activestate.com/Products/Komodo) +* PyCharm (https://www.jetbrains.com/pycharm/) Is there a tool to help find bugs or perform static analysis? |