Leandro Lucarella
Leandro Lucarella
### Summary `mypy --strict` fails with `Name "betterproto.ServiceStub" is not defined` ### Reproduction Steps 1. Generate some gRPC files from some proto files 2. Run `mypy` on the generated code...
According to [Python docs](https://docs.python.org/3/reference/datamodel.html#object.__exit__): > If an exception is supplied, and the method wishes to suppress the exception (i.e., prevent it from being propagated), it should return a true value....
**Feature** Report where `@deprecated` symbols are used in the code. **Pitch** Python 3.12 is coming soon, and it introduces [PEP 702](https://peps.python.org/pep-0702/) (the `@deprecated` decorator).`mypy` should support it.
**Is your feature request related to a problem? Please describe.** When selecting photos to add to an album for example, it is very useful to be able to zoom/expand a...
This commit adds a new parameter `async_only` to the plugin, that when present, will only generate the `async` stubs. The current `{}AsyncStub` classes are *fake*, they are not present in...
### Is your feature request related to a problem? Please describe. Not a problem, but when writing functions/classes with lots of options, and in particular when these options need to...
### Description When using `force_polling=True` and a watched file/directory is changed more than once in the same second, the change is not reported. I was expecting to receive an event...
Hi, this is another attempt at #124. We are using `marshmallow_dataclass` and it is great, but we would like to have a way to tell if some unknown fields were...
When creating a secure channel using `ssl_channel_credentials()` with an incomplete pair (missing `private_key` or `certificate_chain`), the code will reach a `assert()` in the C code and crash the interpreter. ```python...