protobuf/python/google
Leon Barrett de5d071f44 Fix assignment between Python protobuf Structs (#6377)
Currently, if you access a ListValue from a Struct and attempted to
assign it to another Struct, you would get an exception:

   > s1 = spb.Struct()
   > s1['a'] = [1]
   > s2 = spb.Struct()
   > s2['a'] = s1['a']
   ValueError: Unexpected type

This fixes that case.
2019-07-19 15:47:52 -07:00
..
protobuf Fix assignment between Python protobuf Structs (#6377) 2019-07-19 15:47:52 -07:00
__init__.py Add a modified patch from craigcitro@ to handle namespace sharing. 2016-02-18 16:12:11 -08:00