What I see in the docs:
>>>fromgcloudimportdatastore>>>fromgcloud.datastore.transactionimportTransaction>>>datastore.set_defaults()
>>>withTransaction():
... datastore.put([entity1, entity2])
What I want to do:
>>>fromgcloudimportdatastore>>>withdatastore.Transaction() ast:
... t.put([entity1, entity2])
What I see in the docs:
What I want to do: