Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
9171bed6
Commit
9171bed6
authored
May 26, 2008
by
Benjamin Peterson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
take Brett's advice on a few warnings
parent
4036fd4b
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
8 deletions
+9
-8
Doc/library/commands.rst
Doc/library/commands.rst
+7
-6
Lib/commands.py
Lib/commands.py
+2
-2
No files found.
Doc/library/commands.rst
View file @
9171bed6
...
...
@@ -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::
...
...
Lib/commands.py
View file @
9171bed6
...
...
@@ -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
=
' "'
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment