File tree 1 file changed +13
-12
lines changed
betterproto/tests/inputs/namespace_builtin_types 1 file changed +13
-12
lines changed Original file line number Diff line number Diff line change @@ -8,30 +8,31 @@ message Test {
8
8
string float = 2 ;
9
9
string complex = 3 ;
10
10
11
- // https://docs.python.org/3/library/stdtypes.html#generator -types
12
- string list = 10 ;
13
- string tuple = 11 ;
14
- string range = 12 ;
11
+ // https://docs.python.org/3/library/stdtypes.html#sequence -types-list-tuple-range
12
+ string list = 4 ;
13
+ string tuple = 5 ;
14
+ string range = 6 ;
15
15
16
16
// https://docs.python.org/3/library/stdtypes.html#str
17
- string str = 21 ;
17
+ string str = 7 ;
18
18
19
19
// https://docs.python.org/3/library/stdtypes.html#bytearray-objects
20
- string bytearray = 22 ;
20
+ string bytearray = 8 ;
21
21
22
22
// https://docs.python.org/3/library/stdtypes.html#bytes-and-bytearray-operations
23
- string bytes = 23 ;
23
+ string bytes = 9 ;
24
24
25
25
// https://docs.python.org/3/library/stdtypes.html#memory-views
26
- string memoryview = 24 ;
26
+ string memoryview = 10 ;
27
27
28
28
// https://docs.python.org/3/library/stdtypes.html#set-types-set-frozenset
29
- string set = 25 ;
30
- string frozenset = 26 ;
29
+ string set = 11 ;
30
+ string frozenset = 12 ;
31
31
32
32
// https://docs.python.org/3/library/stdtypes.html#dict
33
- string map = 27 ;
33
+ string map = 13 ;
34
+ string dict = 14 ;
34
35
35
36
// https://docs.python.org/3/library/stdtypes.html#boolean-values
36
- string bool = 28 ;
37
+ string bool = 15 ;
37
38
}
You can’t perform that action at this time.
0 commit comments