提交 ea420a43 authored 作者: Ian Goodfellow's avatar Ian Goodfellow

fixed a bug where get_debug_values returns tuple(val) rather than val in

the case where it is fetching the value of only one variable
上级 69aaa256
......@@ -664,4 +664,7 @@ def get_debug_values(*args):
" has no test value")
return []
if len(rval) == 1:
return rval
return [tuple(rval)]
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论