diff options
Diffstat (limited to 'Doc/library/commands.rst')
-rw-r--r-- | Doc/library/commands.rst | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/Doc/library/commands.rst b/Doc/library/commands.rst index 84ef257..0b347f7 100644 --- a/Doc/library/commands.rst +++ b/Doc/library/commands.rst @@ -16,11 +16,12 @@ The :mod:`subprocess` module provides more powerful facilities for spawning new processes and retrieving their results. Using the :mod:`subprocess` module is preferable to using the :mod:`commands` module. -.. warning:: +.. note:: - In 3.x, :func:`getstatus` and two undocumented functions (:func:`mk2arg` and - :func:`mkarg`) have been removed. Also, :func:`getstatusoutput` and - :func:`getoutput` have been moved to the :mod:`subprocess` module. + In Python 3.x, :func:`getstatus` and two undocumented functions + (:func:`mk2arg` and :func:`mkarg`) have been removed. Also, + :func:`getstatusoutput` and :func:`getoutput` have been moved to the + :mod:`subprocess` module. The :mod:`commands` module defines the following functions: |