# Not supported (Enums are immutable).
def __setattr__(self, name, value):
- raise NotSupportedException, self.__setattr__
+ raise NotSupportedException(self.__setattr__)
# Not supported (Enums are immutable).
def __delattr__(self, name):
- raise NotSupportedException, self.__delattr__
+ raise NotSupportedException(self.__delattr__)
# Gets the enum symbol for the specified value.
def __getitem__(self, value):
symbol = self._map.get(value)
if symbol is None:
- raise KeyError, value
+ raise KeyError(value)
return symbol
# Gets the enum symbol for the specified value or none.
# Not supported (Enums are immutable).
def __setitem__(self, value, symbol):
- raise NotSupportedException, self.__setitem__
+ raise NotSupportedException(self.__setitem__)
# Not supported (Enums are immutable).
def __delitem__(self, value):
- raise NotSupportedException, self.__delitem__
+ raise NotSupportedException(self.__delitem__)
def entries(self):
# sort by (value, name)
def read(self, N):
data = self.file.read(N)
if len(data) != N:
- raise ValueError, "Out of data!"
+ raise ValueError("Out of data!")
return data
def int8(self):
elif fileclass == 2:
f.is64Bit = True
else:
- raise ValueError, "Unknown file class %x" % fileclass
+ raise ValueError("Unknown file class %x" % fileclass)
byteordering = f.uint8()
if byteordering == 1:
elif byteordering == 2:
f.isLSB = False
else:
- raise ValueError, "Unknown byte ordering %x" % byteordering
+ raise ValueError("Unknown byte ordering %x" % byteordering)
f.seek(18)
e_machine = f.uint16()
elif magic == '\xCF\xFA\xED\xFE':
f.isLSB, f.is64Bit = True, True
else:
- raise ValueError,"Not a Mach-O object file: %r (bad magic)" % path
+ raise ValueError("Not a Mach-O object file: %r (bad magic)" % path)
cputype = f.uint32()
cpusubtype = f.uint32()
patchMachoLoadCommand(f, relocs)
if f.tell() - start != loadCommandsSize:
- raise ValueError,"%s: warning: invalid load commands size: %r" % (
- sys.argv[0], loadCommandsSize)
+ raise ValueError("%s: warning: invalid load commands size: %r" % (
+ sys.argv[0], loadCommandsSize))
def patchMachoLoadCommand(f, relocs):
start = f.tell()
f.read(cmdSize - 8)
if f.tell() - start != cmdSize:
- raise ValueError,"%s: warning: invalid load command size: %r" % (
- sys.argv[0], cmdSize)
+ raise ValueError("%s: warning: invalid load command size: %r" % (
+ sys.argv[0], cmdSize))
def patchMachoSegmentLoadCommand(f, relocs):
segment_name = f.read(16)