Commit 4902e69e authored by Collin Winter's avatar Collin Winter

More raise statement normalization.

parent 6cd2a203
...@@ -80,7 +80,7 @@ def _toaiff(filename, temps): ...@@ -80,7 +80,7 @@ def _toaiff(filename, temps):
temps.append(fname) temps.append(fname)
sts = uncompress.copy(filename, fname) sts = uncompress.copy(filename, fname)
if sts: if sts:
raise error, filename + ': uncompress failed' raise error(filename + ': uncompress failed')
else: else:
fname = filename fname = filename
try: try:
...@@ -93,15 +93,15 @@ def _toaiff(filename, temps): ...@@ -93,15 +93,15 @@ def _toaiff(filename, temps):
msg = msg[1] msg = msg[1]
if type(msg) != type(''): if type(msg) != type(''):
msg = repr(msg) msg = repr(msg)
raise error, filename + ': ' + msg raise error(filename + ': ' + msg)
if ftype == 'aiff': if ftype == 'aiff':
return fname return fname
if ftype is None or not ftype in table: if ftype is None or not ftype in table:
raise error, '%s: unsupported audio file type %r' % (filename, ftype) raise error('%s: unsupported audio file type %r' % (filename, ftype))
(fd, temp) = tempfile.mkstemp() (fd, temp) = tempfile.mkstemp()
os.close(fd) os.close(fd)
temps.append(temp) temps.append(temp)
sts = table[ftype].copy(fname, temp) sts = table[ftype].copy(fname, temp)
if sts: if sts:
raise error, filename + ': conversion to aiff failed' raise error(filename + ': conversion to aiff failed')
return temp return temp
...@@ -197,7 +197,7 @@ class MutableString(UserString): ...@@ -197,7 +197,7 @@ class MutableString(UserString):
elif step != 1: elif step != 1:
# XXX(twouters): I guess we should be reimplementing # XXX(twouters): I guess we should be reimplementing
# the extended slice assignment/deletion algorithm here... # the extended slice assignment/deletion algorithm here...
raise TypeError, "invalid step in slicing assignment" raise TypeError("invalid step in slicing assignment")
start = min(start, stop) start = min(start, stop)
self.data = self.data[:start] + sub + self.data[stop:] self.data = self.data[:start] + sub + self.data[stop:]
else: else:
...@@ -212,7 +212,7 @@ class MutableString(UserString): ...@@ -212,7 +212,7 @@ class MutableString(UserString):
start, stop = stop+1, start+1 start, stop = stop+1, start+1
elif step != 1: elif step != 1:
# XXX(twouters): see same block in __setitem__ # XXX(twouters): see same block in __setitem__
raise TypeError, "invalid step in slicing deletion" raise TypeError("invalid step in slicing deletion")
start = min(start, stop) start = min(start, stop)
self.data = self.data[:start] + self.data[stop:] self.data = self.data[:start] + self.data[stop:]
else: else:
......
...@@ -127,7 +127,7 @@ class StreamReader(codecs.StreamReader): ...@@ -127,7 +127,7 @@ class StreamReader(codecs.StreamReader):
elif byteorder == 1: elif byteorder == 1:
self.decode = codecs.utf_32_be_decode self.decode = codecs.utf_32_be_decode
elif consumed>=4: elif consumed>=4:
raise UnicodeError,"UTF-32 stream does not start with BOM" raise UnicodeError("UTF-32 stream does not start with BOM")
return (object, consumed) return (object, consumed)
### encodings module API ### encodings module API
......
...@@ -103,7 +103,7 @@ class ASDLScanner(spark.GenericScanner, object): ...@@ -103,7 +103,7 @@ class ASDLScanner(spark.GenericScanner, object):
def t_default(self, s): def t_default(self, s):
r" . +" r" . +"
raise ValueError, "unmatched input: %r" % s raise ValueError("unmatched input: %r" % s)
class ASDLParser(spark.GenericParser, object): class ASDLParser(spark.GenericParser, object):
def __init__(self): def __init__(self):
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment