summaryrefslogtreecommitdiff
path: root/Lib/plat-mac/cfmfile.py
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2006-08-24 03:53:23 +0000
committerGuido van Rossum <guido@python.org>2006-08-24 03:53:23 +0000
commitb053cd8f40dd19985b16f50661640dcefb69888f (patch)
tree88e1c2ce636a6df402a97c51ea9067a46735120a /Lib/plat-mac/cfmfile.py
parent01c77c66289f8e9c8d15b8da623fae4014ec2edb (diff)
downloadcpython-git-b053cd8f40dd19985b16f50661640dcefb69888f.tar.gz
Killed the <> operator. You must now use !=.
Opportunistically also fixed one or two places where '<> None' should be 'is not None' and where 'type(x) <> y' should be 'not isinstance(x, y)'.
Diffstat (limited to 'Lib/plat-mac/cfmfile.py')
-rw-r--r--Lib/plat-mac/cfmfile.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/Lib/plat-mac/cfmfile.py b/Lib/plat-mac/cfmfile.py
index fd1a3e86ca..df157fde8c 100644
--- a/Lib/plat-mac/cfmfile.py
+++ b/Lib/plat-mac/cfmfile.py
@@ -73,7 +73,7 @@ class CfrgResource:
Res.CloseResFile(resref)
Res.UseResFile(currentresref)
self.parse(data)
- if self.version <> 1:
+ if self.version != 1:
raise error, "unknown 'cfrg' resource format"
def parse(self, data):
@@ -143,7 +143,7 @@ class FragmentDescriptor:
return data
def getfragment(self):
- if self.where <> 1:
+ if self.where != 1:
raise error, "can't read fragment, unsupported location"
f = open(self.path, "rb")
f.seek(self.offset)
@@ -155,7 +155,7 @@ class FragmentDescriptor:
return frag
def copydata(self, outfile):
- if self.where <> 1:
+ if self.where != 1:
raise error, "can't read fragment, unsupported location"
infile = open(self.path, "rb")
if self.length == 0: