]> granicus.if.org Git - python/commit
The commands module has been removed. The getoutput() and getstatusoutput()
authorBrett Cannon <bcannon@gmail.com>
Mon, 26 May 2008 19:04:21 +0000 (19:04 +0000)
committerBrett Cannon <bcannon@gmail.com>
Mon, 26 May 2008 19:04:21 +0000 (19:04 +0000)
commita23810f86a53e394936b38ed9c6104fe2cc592cf
treef39d39741d348f914c151484fce95af2b33b295f
parent35af8d4218138e74f37a083b7e3c8abd4c0f1c11
The commands module has been removed. The getoutput() and getstatusoutput()
functions have been added to the subprocess module.

The fixer for this still needs to be written and proper Py3K deprecation
warnings for the functions that didn't make the transition need to be done in
2.6.

This is all part of trying to close issue #2872.
13 files changed:
Demo/tkinter/guido/kill.py
Demo/tkinter/guido/svkill.py
Doc/library/commands.rst [deleted file]
Doc/library/subprocess.rst
Doc/library/unix.rst
Lib/commands.py [deleted file]
Lib/subprocess.py
Lib/test/regrtest.py
Lib/test/test___all__.py
Lib/test/test_commands.py [deleted file]
Lib/test/test_subprocess.py
Misc/NEWS
Misc/cheatsheet