You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
BUG26847553: Fix AttributeError when using pure Python Protobuf
Using a value of type list when setting an attribute in a Message object
throws an AttributeError.
This patch fix this issue by testing the value type and using the .extend()
method for list type values.
This patch also adds the encoding of string values types to bytes when using
Python 3.
BUG25215081: Remove dictionary comprehension lists
Dictionary comprehension lists is not supported in python 2.6 which causes
this error. Using the dict initializer with tuple works the same as
dictionary comprehension lists and is also supported in python 2.6.