Handle fields that clash with Python reserved keywords

This commit is contained in:
Daniel G. Taylor
2019-10-23 21:28:31 -07:00
parent eff9021529
commit ff8463cf12
6 changed files with 63 additions and 6 deletions

View File

@@ -0,0 +1,5 @@
{
"for": 1,
"with": 2,
"as": 3
}

View File

@@ -0,0 +1,7 @@
syntax = "proto3";
message Test {
int32 for = 1;
int32 with = 2;
int32 as = 3;
}