Erik Friese
Erik Friese
After compiling any project which imports `betterproto` in standalone mode, the resulting executable crashes with error > pkg_resources.DistributionNotFound: The 'betterproto' distribution was not found and is required by the application...
According to the docs, deconstruction of a oneof-type is meant to be done in the following way: ```proto syntax = "proto3"; message Test { oneof foo { bool on =...
### Summary When compiling a proto file which references well known types, `protoc` should generate the line `import betterproto.lib.google.protobuf as betterproto_lib_google_protobuf`. This does not happen in the following edge case....
When building a python distribution for target armv7-unknown-linux-gnueabihf, the resulting file `PYTHON.json` contains several information indicating it was build for x86_64-unknown-linux-gnu. ### How to reproduce: ``` git clone https://github.com/indygreg/python-build-standalone.git cd...
The range of possible values of `chrono::DateTime` is much larger than that of Python's `datetime` (which is limited by 1
When calling `get_field_by_number` on an unset scalar field, the default value is returned. When calling `take_field_by_number`, nothing is returned instead. (Tested on current version 0.11.4) More precisely: ```rust let desc...
Hi, do you plan to support [the `:has()` selector](https://developer.mozilla.org/en-US/docs/Web/CSS/:has)? To my understanding, this css keyword is needed for selecting objects based on the parent of another known object. Consider the...
When compiling this snippet ```python3 class Foo: x: int y: int foo = Foo() foo.y = 1 match foo: case Foo(x=x): print(f"{x=}") case Foo(y=y): print(f"{y=}") ``` with `nuitka --standalone` on...
According to the [Readme](https://github.com/danielgtaylor/python-betterproto/blob/master/README.md#one-of-support) it should be possible to access fields of a oneof-group by pattern matching so that static analysis tools can provide type hints: ```python3 test = Test()...
### Describe the Bug When calling `.send().await` on a `ReactorScope` in an infinite loop, nothing is actually sent. ### Steps to Reproduce Spawn a web worker running the following loop....