Fix a Python 2.6 incompatibility with unicode keywords and lambdas.
Review Request #7357 — Created May 31, 2015 and submitted — Latest diff uploaded
The API's create method uses a lambda for its implementation, and apparently
some Python 2.6.x versions have an incompatibility with passing in unicode
kwarg names for lambdas. This change fixes those up to use bytes, and adds a
comment explaining why.
Posted this change.