提交 ba8a5e01 authored 作者: abalkin's avatar abalkin

Removed redundant code. (Noticed by @lamblin.)

上级 ee6a461d
...@@ -9,7 +9,7 @@ from theano.compile.io import In, Out ...@@ -9,7 +9,7 @@ from theano.compile.io import In, Out
from theano.compile import function from theano.compile import function
from theano.compile import UnusedInputError from theano.compile import UnusedInputError
from theano.gof import MissingInputError from theano.gof import MissingInputError
from theano.gof.python25 import all, any from theano.compat import all, exc_message
from theano import tensor from theano import tensor
from theano import tensor as T from theano import tensor as T
...@@ -636,11 +636,10 @@ class T_picklefunction(unittest.TestCase): ...@@ -636,11 +636,10 @@ class T_picklefunction(unittest.TestCase):
fp = BytesIO() fp = BytesIO()
p = cPickle.Pickler(fp, 2) p = cPickle.Pickler(fp, 2)
p.persistent_id = pers_save p.persistent_id = pers_save
p.dump(f)
try: try:
p.dump(f) p.dump(f)
except NotImplementedError, e: except NotImplementedError, e:
if e[0].startswith('DebugMode is not picklable'): if exc_message(e).startswith('DebugMode is not picklable'):
return return
else: else:
raise raise
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论