diff options
author | Brett Cannon <bcannon@gmail.com> | 2008-05-26 19:04:21 (GMT) |
---|---|---|
committer | Brett Cannon <bcannon@gmail.com> | 2008-05-26 19:04:21 (GMT) |
commit | a23810f86a53e394936b38ed9c6104fe2cc592cf (patch) | |
tree | f39d39741d348f914c151484fce95af2b33b295f /Misc/cheatsheet | |
parent | 35af8d4218138e74f37a083b7e3c8abd4c0f1c11 (diff) | |
download | cpython-a23810f86a53e394936b38ed9c6104fe2cc592cf.zip cpython-a23810f86a53e394936b38ed9c6104fe2cc592cf.tar.gz cpython-a23810f86a53e394936b38ed9c6104fe2cc592cf.tar.bz2 |
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.
Diffstat (limited to 'Misc/cheatsheet')
-rw-r--r-- | Misc/cheatsheet | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Misc/cheatsheet b/Misc/cheatsheet index e9a2639..4ae5439 100644 --- a/Misc/cheatsheet +++ b/Misc/cheatsheet @@ -1811,7 +1811,6 @@ datetime Basic date and time types. code Utilities needed to emulate Python's interactive interpreter codecs Lookup existing Unicode encodings and register new ones. colorsys Conversion functions between RGB and other color systems. -commands Tools for executing UNIX commands . compileall Force "compilation" of all .py files in a directory. configparser Configuration file parser (much like windows .ini files) copy Generic shallow and deep copying operations. |