mirror of https://github.com/python/cpython
Convert some old-style string exceptions to class exceptions.
This commit is contained in:
parent
b65b006595
commit
def003845b
|
@ -12,7 +12,8 @@ SPLITLINE = '--------------------'
|
|||
FORMLINE = '=============== FORM ==============='
|
||||
ENDLINE = '=============================='
|
||||
|
||||
error = 'flp.error'
|
||||
class error(Exception):
|
||||
pass
|
||||
|
||||
##################################################################
|
||||
# Part 1 - The parsing routines #
|
||||
|
|
|
@ -5,7 +5,8 @@
|
|||
# XXX It appears that compressing grayscale images doesn't work right;
|
||||
# XXX the resulting file causes weirdness.
|
||||
|
||||
error = 'jpeg.error' # Exception
|
||||
class error(Exception):
|
||||
pass
|
||||
|
||||
options = {'quality': 75, 'optimize': 0, 'smooth': 0, 'forcegray': 0}
|
||||
|
||||
|
|
|
@ -2,8 +2,10 @@
|
|||
|
||||
import cd, CD
|
||||
|
||||
Error = 'Readcd.Error'
|
||||
_Stop = 'Readcd.Stop'
|
||||
class Error(Exception):
|
||||
pass
|
||||
class _Stop(Exception):
|
||||
pass
|
||||
|
||||
def _doatime(self, cb_type, data):
|
||||
if ((data[0] * 60) + data[1]) * 75 + data[2] > self.end:
|
||||
|
|
|
@ -50,7 +50,8 @@ uncompress = pipes.Template()
|
|||
uncompress.append('uncompress', '--')
|
||||
|
||||
|
||||
error = 'torgb.error' # Exception
|
||||
class error(Exception):
|
||||
pass
|
||||
|
||||
def torgb(filename):
|
||||
temps = []
|
||||
|
|
|
@ -12,7 +12,8 @@ SPLITLINE = '--------------------'
|
|||
FORMLINE = '=============== FORM ==============='
|
||||
ENDLINE = '=============================='
|
||||
|
||||
error = 'flp.error'
|
||||
class error(Exception):
|
||||
pass
|
||||
|
||||
##################################################################
|
||||
# Part 1 - The parsing routines #
|
||||
|
|
|
@ -5,7 +5,8 @@
|
|||
# XXX It appears that compressing grayscale images doesn't work right;
|
||||
# XXX the resulting file causes weirdness.
|
||||
|
||||
error = 'jpeg.error' # Exception
|
||||
class error(Exception):
|
||||
pass
|
||||
|
||||
options = {'quality': 75, 'optimize': 0, 'smooth': 0, 'forcegray': 0}
|
||||
|
||||
|
|
|
@ -2,8 +2,10 @@
|
|||
|
||||
import cd, CD
|
||||
|
||||
Error = 'Readcd.Error'
|
||||
_Stop = 'Readcd.Stop'
|
||||
class Error(Exception):
|
||||
pass
|
||||
class _Stop(Exception):
|
||||
pass
|
||||
|
||||
def _doatime(self, cb_type, data):
|
||||
if ((data[0] * 60) + data[1]) * 75 + data[2] > self.end:
|
||||
|
|
|
@ -50,7 +50,8 @@ uncompress = pipes.Template()
|
|||
uncompress.append('uncompress', '--')
|
||||
|
||||
|
||||
error = 'torgb.error' # Exception
|
||||
class error(Exception):
|
||||
pass
|
||||
|
||||
def torgb(filename):
|
||||
temps = []
|
||||
|
|
Loading…
Reference in New Issue