From 8152d32375c40bba9ccbe43b780ebe96d9617781 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/xdrlib.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Lib/xdrlib.py') diff --git a/Lib/xdrlib.py b/Lib/xdrlib.py index 290d92ee48..c97975d8bf 100644 --- a/Lib/xdrlib.py +++ b/Lib/xdrlib.py @@ -95,7 +95,7 @@ class Packer: self.pack_uint(0) def pack_farray(self, n, list, pack_item): - if len(list) <> n: + if len(list) != n: raise ValueError, 'wrong array size' for item in list: pack_item(item) @@ -204,7 +204,7 @@ class Unpacker: while 1: x = self.unpack_uint() if x == 0: break - if x <> 1: + if x != 1: raise ConversionError, '0 or 1 expected, got ' + `x` item = unpack_item() list.append(item) -- cgit v1.2.1