-
- Downloads
Use Module class
* Methods returning module References now directly return Module * Methods taking a module Reference now directly take a Module * Run/runStream/evaluate forward to corresponding Module methods * AutorunStream is now in Module (where it belongs, since you always execute in the context of a module) Notice that this is backward compatible because Reference& arguments where changed to Module (no &) arguments. Hence calling run(...,m) with a Reference m will create a temporary Module object from r. This has the advantage that we can centralize all error cheching in Module while beeing type-safe (in the python sense).
Please register or sign in to comment