summaryrefslogtreecommitdiffstats
path: root/Doc/library
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2009-04-25 15:11:29 (GMT)
committerGeorg Brandl <georg@python.org>2009-04-25 15:11:29 (GMT)
commit208b00d03fcd16d71dc3942daa9e3a2c7b092322 (patch)
tree832d236a32aec8ac7d47ac02ddd7c05f91b7713b /Doc/library
parentcf5608df8180875528f09afff00e9f898cc85cc0 (diff)
downloadcpython-208b00d03fcd16d71dc3942daa9e3a2c7b092322.zip
cpython-208b00d03fcd16d71dc3942daa9e3a2c7b092322.tar.gz
cpython-208b00d03fcd16d71dc3942daa9e3a2c7b092322.tar.bz2
#5841: add deprecation py3k warning and notice in the docs for commands module.
Diffstat (limited to 'Doc/library')
-rw-r--r--Doc/library/commands.rst6
1 files changed, 6 insertions, 0 deletions
diff --git a/Doc/library/commands.rst b/Doc/library/commands.rst
index 84ef257..a700628 100644
--- a/Doc/library/commands.rst
+++ b/Doc/library/commands.rst
@@ -5,6 +5,12 @@
.. module:: commands
:platform: Unix
:synopsis: Utility functions for running external commands.
+ :deprecated:
+
+.. deprecated:: 2.6
+ The :mod:`commands` module has been removed in Python 3.0. Use the
+ :mod:`subprocess` module instead.
+
.. sectionauthor:: Sue Williams <sbw@provis.com>