You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I would have to think about this, but that is not going to be for a while.
You should be able to use ciao_contrib.runtool.make_tool to let you make
"copies" of a tool, but at the expense of it not picking up any parameters
that have been changed - e.g.
dmcopy.verbose = 5
foo = make_tool("dmcopy")
will have foo.verbose set to 0 (the default value) and not the
dmcopy.verbose value I just set.
On Fri, Oct 21, 2022 at 4:23 PM Axel Donath ***@***.***> wrote:
To reproduce:
from ciao_contrib.runtool import dmcopyimport copy
copy.deepcopy(dmcopy)
Results in:
...
1085 """Provide support for read using tool.parameter syntax"""
1086 try:
-> 1087 pname = self._expand_parname(parname)
1088 except UnknownParamError as ue:
1089 raise AttributeError(str(ue)) from None
RecursionError: maximum recursion depth exceeded
This does not seem correct behavior to me.
—
Reply to this email directly, view it on GitHub
<#642>, or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AABW27REAYCGHCBBG5P4E4DWEL3SPANCNFSM6AAAAAARLPOXWU>
.
You are receiving this because you are subscribed to this thread.Message
ID: ***@***.***>
To reproduce:
Results in:
This does not seem correct behavior to me.
The text was updated successfully, but these errors were encountered: