Marc Mueller
Marc Mueller
I was wondering if anybody managed to build Artery on macOS (10.15 Catalina). OMNeT++ was build with `WTIH_OSGEARTH=no`, https://github.com/riebl/artery/issues/101 Vanetza with `-D VANETZA_NET_WITH_POSIX=OFF`, https://github.com/riebl/vanetza/issues/89 Additionally I needed to remove both...
## Proposed change This PR adds strict typing for the `auth` integration. ## Type of change - [ ] Dependency upgrade - [ ] Bugfix (non-breaking change which fixes an...
Second attempt after #990 I've improved the default `MATCH_CASE_REGEX`, especially the lookahead part. ```diff - (?=.*\:) + (?=.*\S.*\:(?=\s*$|\s*#)) ``` It now requires at least one non-whitespace char to be present...
At the moment, `collections.abc` types are strict aliases for their typing counterparts. This can make it difficult for intellisense providers to distinguish them and suggest the correct one. @erictraut mentioned...
Regression in `0.920` / `0.930` compared with `0.910`. ```py from typing import Any def func() -> Any: ... var = func() reveal_type(var) # Any assert isinstance(var, bool) reveal_type(var) # bool...
_Previous discussion: https://github.com/microsoft/pyright/issues/3775_ I've been playing around with TypeVarTuples recently, in particular together with Callable and args. https://peps.python.org/pep-0646/#type-variable-tuples-with-callable One issue became obvious early on which isn't defined in the PEP...
At the moment it's only possible to type callables with default arguments by using a [Callback protocol ](https://peps.python.org/pep-0544/#callback-protocols). This adds a lot of additional code for just a few default...
I would like to use `ParamSpec` to type a function that accepts a `Callable[P, Any]` and `*args` which will be passed to the callable. The function itself does not accept...
I think it might be useful to implement something like a `global_setter` for services. Those should get called when one or more char values of this service are about to...
This issue should track the progress to the next major release and provide a place to have discussions about features. **Features** - [x] Improve argparse #87 - [x] Move to...