[Python-checkins] bpo-37610: improve Using Python doc wrt Editors & IDE (GH-14850)

Miss Islington (bot) webhook-mailer at python.org
Thu Jul 18 21:28:53 EDT 2019


https://github.com/python/cpython/commit/87b6078fb90f11dc67ad8f31e98cbc40f74fcb81
commit: 87b6078fb90f11dc67ad8f31e98cbc40f74fcb81
branch: 3.7
author: Miss Islington (bot) <31488909+miss-islington at users.noreply.github.com>
committer: GitHub <noreply at github.com>
date: 2019-07-18T18:28:49-07:00
summary:

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
(cherry picked from commit 8f040b7a9f442e7c2605ef1cad9c6b5eb7dd7af7)

Co-authored-by: aldwinaldwin <aldwinaldwin at users.noreply.github.com>

files:
A Doc/using/editors.rst
M Doc/using/index.rst
M Doc/using/unix.rst

diff --git a/Doc/using/editors.rst b/Doc/using/editors.rst
new file mode 100644
index 000000000000..f36f570125c1
--- /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.
diff --git a/Doc/using/index.rst b/Doc/using/index.rst
index 4f0aa7d9577d..4a45121ac2ee 100644
--- a/Doc/using/index.rst
+++ b/Doc/using/index.rst
@@ -17,3 +17,4 @@ interpreter and things that make working with Python easier.
    unix.rst
    windows.rst
    mac.rst
+   editors.rst
diff --git a/Doc/using/unix.rst b/Doc/using/unix.rst
index d18fd0670627..7fdab5d43329 100644
--- a/Doc/using/unix.rst
+++ b/Doc/using/unix.rst
@@ -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.



More information about the Python-checkins mailing list