googlesamples / assistant-sdk-python

Samples and bindings for the Google Assistant API
http://developer.google.com/assistant/sdk
Apache License 2.0
916 stars 320 forks source link

Updated buf to use tobytes() as tostring() is deprecated #421

Open rshmhrj opened 3 years ago

rshmhrj commented 3 years ago

Python v3.2 introduced tobytes() and kept the deprecated tostring() as an alias for tobytes()

This fix checks the current sys.version_info and chooses arr.tobytes() if the version is at least 3.2,\ otherwise it uses arr.tostring()