goto40

Results 88 comments of goto40

> Yes, I am sorry. Would be great if someone picked it up. Is there an alternative to this lib somewhere at the moment?

You may also have a look at https://github.com/facebookexperimental/libunifex

> Thanks! Do you have experience with this library? Can I use it as a coroutine library without changing my paradigm to sender/receiver (at least for a first shot)? I...

Here, I try to **summarize what problems can occur**, while loading a model: * **Parser** problems (syntax) * **Reference resolution** problems ("object not found") * **Object processor / validation** problems...

Errors while resolving references could reported together. Errors in object processors remain a point to clarify. It could help to distinguish between 'validators' and modifying processors. Errors from validators could...

The glob.glob supports recursive globbing, but not for all python versions (see https://docs.python.org/3/library/glob.html). It is not suitable for your search path idea (as far as I understand it). I suggest...

The problem in the example above, is that Ref1 and Ref2 are not distinguishable by the parser. Thus, the first match (Ref1) is always chosen. Note: It is not possible...