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
And encountering an exception it might be hard to know where it came from, especially if stageX is itself a composition of elementary functions like map, filter etc'.
If we could somehow do my_func = toolz.compose(stage1, stage2, stage3, name="do_something"), and have exceptions return the line where the composition was done, that could be useful.
The text was updated successfully, but these errors were encountered:
When debugging code that has use of
compose
, e.g.my_func = toolz.compose(stage3, stage2, stage1)
And encountering an exception it might be hard to know where it came from, especially if
stageX
is itself a composition of elementary functions likemap
,filter
etc'.If we could somehow do
my_func = toolz.compose(stage1, stage2, stage3, name="do_something")
, and have exceptions return the line where the composition was done, that could be useful.The text was updated successfully, but these errors were encountered: