diff options
author | Georg Brandl <georg@python.org> | 2014-10-29 07:55:18 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2014-10-29 07:55:18 (GMT) |
commit | b425891b6e803e5b9d6682ce4ac927c2853e1ca1 (patch) | |
tree | eb27800bdae6d75c27968816df2067084a5f2d9b /Doc | |
parent | d64fa1e11ee479fb4651ef6359a1d05bf405149e (diff) | |
parent | 5e722f698ec21a0c56d0267ba6c09bb12067a683 (diff) | |
download | cpython-b425891b6e803e5b9d6682ce4ac927c2853e1ca1.zip cpython-b425891b6e803e5b9d6682ce4ac927c2853e1ca1.tar.gz cpython-b425891b6e803e5b9d6682ce4ac927c2853e1ca1.tar.bz2 |
merge with 3.4
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 b52af60..659247b 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 -http://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? |