bpo-37610: improve Using Python doc wrt Editors & IDE (GH-14850)
authoraldwinaldwin <aldwinaldwin@users.noreply.github.com>
Fri, 19 Jul 2019 01:23:17 +0000 (09:23 +0800)
committerMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Fri, 19 Jul 2019 01:23:17 +0000 (18:23 -0700)
Move the Editors and IDE section out of the Unix section, to its own section.

https://bugs.python.org/issue37610

Doc/using/editors.rst [new file with mode: 0644]
Doc/using/index.rst
Doc/using/unix.rst

diff --git a/Doc/using/editors.rst b/Doc/using/editors.rst
new file mode 100644 (file)
index 0000000..f36f570
--- /dev/null
@@ -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.
index 4f0aa7d9577df6fb1398f4d0c34095b3d935d588..4a45121ac2eebd817c55097de74dbb4887c3ad5b 100644 (file)
@@ -17,3 +17,4 @@ interpreter and things that make working with Python easier.
    unix.rst
    windows.rst
    mac.rst
+   editors.rst
index 021f0d35a8eea336b5192fb24885aa3dc4bc1ead..c0a5643fc2c24298752e5c9248dd6d84cee15e4d 100644 (file)
@@ -134,14 +134,3 @@ some Unices may not have the :program:`env` command, so you may need to hardcode
 ``/usr/bin/python3`` as the interpreter path.
 
 To use shell commands in your Python scripts, look at the :mod:`subprocess` module.
-
-
-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.