Ivan Klass

Results 35 comments of Ivan Klass

Failing test: `SearchFieldTestCase.test_get_iterable_objects_with_list_stays_the_same` in `test_haystack.test_fields`

This is also highly needed for mixin classes to annotate self-type, for cases where mixin can only be mixed to some type or even also require another mixins. class Base:...

Thank you for the awesome contribution! We've spent multiple hours pulling our hairs out figuring out why our shared instance in ElastiCache is not picking up the global prefix, while...

For those who is also wondering why this one is closed, I believe the issue is superseded with https://github.com/lampepfl/dotty/pull/16157

Thanks @esuntag for finding this and @s5bug for the explanation. I've gone further and dropped 'all-in-one' given that worked perfectly as the type is opaque and actually it's an Int...

I've solved this like in following: ``` class RemoveFieldAttrsMeta(jsl.document.DocumentMeta): """ Removes field descriptions from instances """ @classmethod def collect_fields(mcs, bases, attrs): fields = super(RemoveFieldAttrsMeta, mcs).collect_fields(bases, attrs) for f in fields:...

> we folded this simple use-case under the general umbrella of establishing new identity for every new schema that is created from merge of referenced and referencing schema. But how...

I believe that's expected, as `NonNegInt` is a intentionally a separate type. One should use `.value` to unpack. e.g. `if rcspLev.value < 1`

@adamw when you have a chance, could you please take a look on #4267 so I can rebase this PR on top of that?