Nipunn Koorapati

Results 132 comments of Nipunn Koorapati

Aha. Makes sense! Search functionality would make fantastic use of that column. Moving readme column to the versions table would certainly help us regenerate old readmes. Would it be beneficial...

I've run into a very similar scenario (mold installed in the global cargo config), overriding the `[build.rustflags]` configuration in my local project Haven't fully thought this through, but I think...

In the mypy-protobuf generator, we have this ```python for field in constructor_fields: field_type = self.python_type(field, generic_container=True) if self.fd.syntax == "proto3" and is_scalar(field) and field.label != d.FieldDescriptorProto.LABEL_REPEATED and not self.relax_strict_optional_primitives and...

ok interesting! Cool find - seems like the behavior is slightly different when the scalar field is part of a oneof vs in the message. Would take a fix along...

Sounds like a great idea!

I would take a contribution! Otherwise, I'd probably get around to it around christmastime. I like the idea as you've spec'd it. The repo has tests (`./run_tests.sh`) with some existing...

hi - I ran into this issue recently. I found it rather confusing because `minimumReleaseAge` depends on this field being set by the datasource: `"releaseTimestamp": "2023-07-28T14:25:18.635Z"`. Not all data sources...

> Well, I realize it's hard to determine the type of return value in this func. I decide to write typing like this: > > ``` > from typing import...

Hi - thanks for the interest! The mypy types are trying to correctly represent what protobuf actually presents. Protobuf's python generator does not actually produce an `IntEnum`, but rather represents...

Hi. I think `EnumTypeWrapper` may not be what you think it is. It is not a subclass of int. enums values in protobuf are represented as ints. `mypy-protobuf` chooses to...