aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJesus Cea <jcea@jcea.es>2012-10-05 02:48:46 +0200
committerJesus Cea <jcea@jcea.es>2012-10-05 02:48:46 +0200
commitf1af7057208da7b3d15703645688fea971a4fb5e (patch)
tree39acd4dbcf0f5d9005521d814952164819d7885d /Lib/platform.py
parent#16127: merge with 3.3. (diff)
downloadcpython-f1af7057208da7b3d15703645688fea971a4fb5e.tar.gz
cpython-f1af7057208da7b3d15703645688fea971a4fb5e.tar.bz2
cpython-f1af7057208da7b3d15703645688fea971a4fb5e.zip
#16135: Removal of OS/2 support (Remove OS2 and OS/2 references)
Diffstat (limited to 'Lib/platform.py')
-rwxr-xr-xLib/platform.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/platform.py b/Lib/platform.py
index dd318fe7842..d7c508f3c32 100755
--- a/Lib/platform.py
+++ b/Lib/platform.py
@@ -403,13 +403,13 @@ _ver_output = re.compile(r'(?:([\w ]+) ([\w.]+) '
def _syscmd_ver(system='', release='', version='',
- supported_platforms=('win32','win16','dos','os2')):
+ supported_platforms=('win32','win16','dos')):
""" Tries to figure out the OS version used and returns
a tuple (system,release,version).
It uses the "ver" shell command for this which is known
- to exists on Windows, DOS and OS/2. XXX Others too ?
+ to exists on Windows, DOS. XXX Others too ?
In case this fails, the given parameters are used as
defaults.