-
Notifications
You must be signed in to change notification settings - Fork 80
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Handle enum variants that conflict with EnumTypeWrapper methods #238
Comments
Probably pay attention to the discussion in protocolbuffers/protobuf#8803 - it seems likely the authors haven't thought about this case carefully. |
nipunn1313
added a commit
that referenced
this issue
Jul 15, 2021
…fields For example, the following has a field which conflicts with a method on the EnumTypeWrapper class. ``` enum { Name = 1; } ``` Fixes #238
nipunn1313
added a commit
that referenced
this issue
Jul 15, 2021
…fields For example, the following has a field which conflicts with a method on the EnumTypeWrapper class. ``` enum { Name = 1; } ``` Fixes #238
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Eg
Currently, it generates working python code, but broken stubs.
In python code - this all works.
The text was updated successfully, but these errors were encountered: