diff options
author | aldwinaldwin <aldwinaldwin@users.noreply.github.com> | 2019-07-19 01:23:17 (GMT) |
---|---|---|
committer | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2019-07-19 01:23:17 (GMT) |
commit | 8f040b7a9f442e7c2605ef1cad9c6b5eb7dd7af7 (patch) | |
tree | 6da549de35589e1db0c67cc73ac6dbba426a3e73 /Doc/using/editors.rst | |
parent | e0a1f8fb5c60886dbddf1a3ccb5d47576bdd43e2 (diff) | |
download | cpython-8f040b7a9f442e7c2605ef1cad9c6b5eb7dd7af7.zip cpython-8f040b7a9f442e7c2605ef1cad9c6b5eb7dd7af7.tar.gz cpython-8f040b7a9f442e7c2605ef1cad9c6b5eb7dd7af7.tar.bz2 |
bpo-37610: improve Using Python doc wrt Editors & IDE (GH-14850)
Move the Editors and IDE section out of the Unix section, to its own section.
https://bugs.python.org/issue37610
Diffstat (limited to 'Doc/using/editors.rst')
-rw-r--r-- | Doc/using/editors.rst | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/Doc/using/editors.rst b/Doc/using/editors.rst new file mode 100644 index 0000000..f36f570 --- /dev/null +++ b/Doc/using/editors.rst @@ -0,0 +1,14 @@ +.. highlight:: none + +.. _editors: + +****************** + Editors and IDEs +****************** + +There are a number of IDEs that support Python programming language. +Many editors and IDEs provide syntax highlighting, debugging tools, and :pep:`8` checks. + +Please go to `Python Editors <https://wiki.python.org/moin/PythonEditors>`_ and +`Integrated Development Environments <https://wiki.python.org/moin/IntegratedDevelopmentEnvironments>`_ +for a comprehensive list. |