Code review comment for lp://qastaging/~jamesh/storm/bug-349482

Revision history for this message
Thomas Herve (therve) wrote :

+ exec code in namespace
+ return namespace['closure'](state.parameters, bool)

Can you add a local dict and do this:

+ local = {}
+ exec code in namespace, local
+ return local['closure'](state.parameters, bool)

This is it will be even cleaner.

+1!

review: Approve

« Back to merge proposal