From 78fa083216b120f65dbdbeef3377a047f1767fce Mon Sep 17 00:00:00 2001 From: Fred Drake Date: Tue, 12 Dec 2000 23:20:45 +0000 Subject: Update the code to better reflect recommended style: Use != instead of <> since <> is documented as "obsolescent". Use "is" and "is not" when comparing with None or type objects. --- Lib/commands.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Lib/commands.py') diff --git a/Lib/commands.py b/Lib/commands.py index 12acc36408..99387b1053 100644 --- a/Lib/commands.py +++ b/Lib/commands.py @@ -51,7 +51,7 @@ def getstatusoutput(cmd): pipe = os.popen('{ ' + cmd + '; } 2>&1', 'r') text = pipe.read() sts = pipe.close() - if sts == None: sts = 0 + if sts is None: sts = 0 if text[-1:] == '\n': text = text[:-1] return sts, text -- cgit v1.2.1