提交 9860a99a authored 作者: George Ho's avatar George Ho

Remove one-liners for compatibility with Py2.4

上级 b7e691fb
...@@ -279,7 +279,6 @@ class InferShapeTester: ...@@ -279,7 +279,6 @@ class InferShapeTester:
class WrongValue(Exception): class WrongValue(Exception):
def __init__(self, expected_val, val, rtol, atol): def __init__(self, expected_val, val, rtol, atol):
Exception.__init__(self) # to be compatible with python2.4
self.val1 = expected_val self.val1 = expected_val
self.val2 = val self.val2 = val
self.rtol = rtol self.rtol = rtol
......
...@@ -1935,7 +1935,6 @@ class GradientError(Exception): ...@@ -1935,7 +1935,6 @@ class GradientError(Exception):
def __init__( def __init__(
self, arg, err_pos, shape, val1, val2, abs_err, rel_err, abs_tol, rel_tol self, arg, err_pos, shape, val1, val2, abs_err, rel_err, abs_tol, rel_tol
): ):
Exception.__init__(self) # to be compatible with python2.4
self.arg = arg self.arg = arg
self.err_pos = err_pos self.err_pos = err_pos
self.shape = shape self.shape = shape
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论