Omry Yadan
Omry Yadan
Please wait with this until we merge #445.
Yeah, potentially calling a common function from various topic specific files. Keep in mind that for now we have a 2.1 release branch and bug fixes in master are still...
The best solution is probably to enable node level cache somehow, however I think it's premature to open up the resolver caching API. I would like any change in that...
> > At this point I am not taking any new large feature requests for 2.1 > > Oh, no worries, I didn't intend to push for it in 2.1....
This functionality is covered well by enums. I am open to adding support for it but it's low pri. One implementation idea is to convert it to an Enum internally...
Sorry, linked to wrong issue.
exact details are tbd.
Awesome! Taking full advantage of Hydra would probably involve more than just examples (an example is that argparse does not support hierarchical config with dynamic structure (decided at run time)),...
That was me. looking at source or [attr make](https://github.com/python-attrs/attrs/blob/master/src/attr/_make.py#L482-L484), it seems like this metadata is not currently maintained. The reason I want this is because I am using attr (or...
This seems to work, but it's very fragile: ```python def is_attr_frozen(type_): import attr return type_.__setattr__ == attr._make._frozen_setattrs ``` It works if I import the class normally (from foo.bar import FrozenClass),...