You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
During deserialization, unrecognized enum values will be preserved in the message, though how this is represented when the message is deserialized is language-dependent.
Pyrobuf should allow deserializing and reserializing such messages.
The text was updated successfully, but these errors were encountered:
According to the language guide [1]:
During deserialization, unrecognized enum values will be preserved
in the message, though how this is represented when the message is
deserialized is language-dependent.
We can store any integer in the underlying field, because in Cython,
enum and int are the same.
Fixesappnexus#149.
When I attempt to deserialize an enum with a numeric value that isn't listed in the proto file, I get an exception:
The language guide says, however:
Pyrobuf should allow deserializing and reserializing such messages.
The text was updated successfully, but these errors were encountered: