Marti Raudsepp
Marti Raudsepp
Yep. I have looked into the tricks that `django-types` uses to get better type inference for model fields without the plugin. It should be possible to achieve the same results...
I would find the implementation propsed by @JukkaL quite useful. I have a TypedDict whose all values are `List[something]` and I would like to iterate over the dict's `items()` in...
I think most use cases mentioned here would be better served by intersection types: https://github.com/python/typing/issues/213 So if you want to express that all values of a dict are float and...
I want to make a type argument conditional on `TYPE_CHECKING`, because the upstream library used does not support a `__class_getitem__` for this particular class -- only type stubs do. @hauntsaninja's...
Hi! I haven't used `doas`, but I suspect adding doas support to ego wouldn't be difficult. But I don't have much interest to do it myself. > is there any...
The changes in `djangorestframework-stubs` don't really solve the issue I described in this PR. But I also understand not wanting to duplicate the signatures here downstream, fair enough.
I am bothered by the lack of interest or response to this bug. In my opinion, not corrupting home images should be at the top of the list of priorities...
Here is a "use case" for this: the first time I migrated my user to `homed`, I used `rsync [...] --delete` to migrate my files, which deleted `.identity` in the...
> sys.monitoring support is in [coverage.py 7.4.0](https://coverage.readthedocs.io/en/7.4.1/changes.html#version-7-4-0-2023-12-27) Awesome, thanks! I'll test `COVERAGE_CORE=sysmon` on monday. I was completely oblivious to that. I hadn't read the changelog and it wasn't mentioned in...
Indeed `COVERAGE_CORE=sysmon` reduced test suite runtime by ~35%, compared to Python 3.12. That's ~20% faster than Python 3.11 even.