aboutsummaryrefslogtreecommitdiffhomepage
path: root/python/google/protobuf/internal/test_bad_identifiers.proto
diff options
context:
space:
mode:
authorGravatar Feng Xiao <xfxyjwf@gmail.com>2014-11-10 17:34:54 -0800
committerGravatar Feng Xiao <xfxyjwf@gmail.com>2014-11-10 17:34:54 -0800
commit6ef984af4b0c63c1c33127a12dcfc8e6359f0c9e (patch)
treed17c61ff9f3ae28224fbddac6d26bfc59e2cf755 /python/google/protobuf/internal/test_bad_identifiers.proto
parentbaca1a8a1aa180c42de6278d3b8286c4496c6a10 (diff)
Down-integrate from internal code base.
Diffstat (limited to 'python/google/protobuf/internal/test_bad_identifiers.proto')
-rw-r--r--python/google/protobuf/internal/test_bad_identifiers.proto7
1 files changed, 5 insertions, 2 deletions
diff --git a/python/google/protobuf/internal/test_bad_identifiers.proto b/python/google/protobuf/internal/test_bad_identifiers.proto
index 9eb18cb0..29fa38a2 100644
--- a/python/google/protobuf/internal/test_bad_identifiers.proto
+++ b/python/google/protobuf/internal/test_bad_identifiers.proto
@@ -30,6 +30,7 @@
// Author: kenton@google.com (Kenton Varda)
+syntax = "proto2";
package protobuf_unittest;
@@ -39,13 +40,15 @@ message TestBadIdentifiers {
extensions 100 to max;
}
-// Make sure these reasonable extension names don't conflict with internal
-// variables.
extend TestBadIdentifiers {
+ // Make sure these reasonable extension names don't conflict with internal
+ // variables.
optional string message = 100 [default="foo"];
optional string descriptor = 101 [default="bar"];
optional string reflection = 102 [default="baz"];
optional string service = 103 [default="qux"];
+ // And Python keywords.
+ optional string class = 104 [default="Foo"];
}
message AnotherMessage {}