diff options
author | Benjamin Peterson <benjamin@python.org> | 2008-05-26 20:41:45 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2008-05-26 20:41:45 (GMT) |
commit | 9171bed69a05ba1ca0ece4a70725db87ba1e92eb (patch) | |
tree | fca9dde6cb07d4d605c37aeb2913b5faac3c6925 | |
parent | 4036fd4b752f744d455f592a83b4a1e36cd77a86 (diff) | |
download | cpython-9171bed69a05ba1ca0ece4a70725db87ba1e92eb.zip cpython-9171bed69a05ba1ca0ece4a70725db87ba1e92eb.tar.gz cpython-9171bed69a05ba1ca0ece4a70725db87ba1e92eb.tar.bz2 |
take Brett's advice on a few warnings
-rw-r--r-- | Doc/library/commands.rst | 13 | ||||
-rw-r--r-- | Lib/commands.py | 4 |
2 files changed, 9 insertions, 8 deletions
diff --git a/Doc/library/commands.rst b/Doc/library/commands.rst index c3f7710..a221fb5 100644 --- a/Doc/library/commands.rst +++ b/Doc/library/commands.rst @@ -16,6 +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:: + + 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. + The :mod:`commands` module defines the following functions: @@ -42,12 +48,7 @@ The :mod:`commands` module defines the following functions: .. deprecated:: 2.6 This function is nonobvious and useless, also the name is misleading in the - presence of :func:`getstatusoutput`. It is removed in 3.x. - -.. warning:: - - Two undocumented functions in this module, :func:`mk2arg` and :func:`mkargs` - are removed in 3.x. + presence of :func:`getstatusoutput`. Example:: diff --git a/Lib/commands.py b/Lib/commands.py index b4e1d3c..287aa27 100644 --- a/Lib/commands.py +++ b/Lib/commands.py @@ -64,7 +64,7 @@ def getstatusoutput(cmd): # def mk2arg(head, x): from warnings import warnpy3k - warnpy3k("In 3.x, mk2arg is removed.") + warnpy3k("In 3.x, mk2arg has been removed.") import os return mkarg(os.path.join(head, x)) @@ -78,7 +78,7 @@ def mk2arg(head, x): # def mkarg(x): from warnings import warnpy3k - warnpy3k("in 3.x, mkarg is remove.") + warnpy3k("in 3.x, mkarg has been removed.") if '\'' not in x: return ' \'' + x + '\'' s = ' "' |