Results 191 comments of Kurt Rose

an example of how this might combine with `MExpr` ```python M((T.a, T.b)) == (1, 2) ```

This may be applicable to `default` argument in a lot of places -- this would let us strike a middle-ground between "always spec" and "always a constant" another place it...

https://github.com/mahmoud/glom/pull/196 would cover this nicely

great question :-) early on we couldn't decide what the correct behavior should be; agree, we should throw an error rather than silently ignoring the later items one example, we...

that's a great suggestion, providing arguments to missing

That's a great question :-) You're knocking on the door of very universal computer science issues. Can we load an arbitrary spec WITHOUT eval? A spec can embed arbitrary python...

To give some more context on `Fill` -- it was built around the use case of filling in configuration data structures here's the (slightly sanitized) prototypical example ```python Fill({ 'debug':...

in addition to strings, other non-data-structure objects like `int` and `bool` which would be an error in `Auto` mode will pass through to the result just to see how it...

One thing that occurs is maybe a way to make this behavior transparent and overridable. Maybe we could have a "paint-by-number" Mode where you simply override the types that you...

Maybe there should be a "mirror image" of `Val()` -- whereas `Val` says "treat this as a plain value, do not glom" this other mechanism would say "run this through...