-
Notifications
You must be signed in to change notification settings - Fork 15.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Breaking change: Python nested message class __qualname__ now contain…
…s the outer message name. (Previous __qualname__ has the same result with __name__ for nested message that outer message name was not included) example: message Foo { message Bar { bool bool_field = 1; } } nested = test_pb2.Foo.Bar() self.assertEqual('Bar', nested.__class__.__name__) self.assertEqual('Foo.Bar', nested.__class__.__qualname__) # It was 'Bar' before PiperOrigin-RevId: 695817876
- Loading branch information
1 parent
a3733ac
commit 0720536
Showing
3 changed files
with
16 additions
and
20 deletions.
There are no files selected for viewing
17 changes: 0 additions & 17 deletions
17
csharp/src/Google.Protobuf/Reflection/FeatureSetDescriptor.g.cs
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters