diff options
author | Benjamin Peterson <benjamin@python.org> | 2008-05-26 19:41:53 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2008-05-26 19:41:53 (GMT) |
commit | 3aa84a7f28659cfbed312e352775b32d2a58005b (patch) | |
tree | dbf35ab7618666913f26a95a44fd1c51d7d3c93d /Doc/library/commands.rst | |
parent | b17ad2de08f1d31767255879664ba671cb20f000 (diff) | |
download | cpython-3aa84a7f28659cfbed312e352775b32d2a58005b.zip cpython-3aa84a7f28659cfbed312e352775b32d2a58005b.tar.gz cpython-3aa84a7f28659cfbed312e352775b32d2a58005b.tar.bz2 |
warn about some members of the commands module
Diffstat (limited to 'Doc/library/commands.rst')
-rw-r--r-- | Doc/library/commands.rst | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/Doc/library/commands.rst b/Doc/library/commands.rst index 177710b..c3f7710 100644 --- a/Doc/library/commands.rst +++ b/Doc/library/commands.rst @@ -42,7 +42,13 @@ 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`. + 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. + Example:: |