From 132dce22469f476f399d1bbc6d1cc2f7ba0110cc Mon Sep 17 00:00:00 2001 From: Fred Drake Date: Tue, 12 Dec 2000 23:11:42 +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/test/test_nis.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Lib/test/test_nis.py') diff --git a/Lib/test/test_nis.py b/Lib/test/test_nis.py index f711de0041..e1670d16e5 100644 --- a/Lib/test/test_nis.py +++ b/Lib/test/test_nis.py @@ -21,7 +21,7 @@ for nismap in maps: print ' ', k, v if not k: continue - if nis.match(k, nismap) <> v: + if nis.match(k, nismap) != v: print "NIS match failed for key `%s' in map `%s'" % (k, nismap) else: # just test the one key, otherwise this test could take a -- cgit v1.2.1