Google Protobuf空字段和消息标准(Python)
假设我有以下protobuf文件定义:
syntax = "proto2";
message request {
optional string a = 1;
optional bytes b = 2;
}
message dummy {
optional string u = 1;
optional request v = 2;
}
以下是我的疑惑/要求:
我的代码库目前使用python版本2.7.5和protobuf版本2.6。 这可能会发生,我可能会在未来升级python和protobuf版本。 因此,想知道我是否可以在不同版本之间兼容的方式编写代码。
链接地址: http://www.djcxy.com/p/77291.html上一篇: Google Protobuf empty fields and messages criteria (Python)