Skip to content

Instantly share code, notes, and snippets.

@sbucek
Created August 29, 2013 06:37
Show Gist options
  • Save sbucek/6374860 to your computer and use it in GitHub Desktop.
Save sbucek/6374860 to your computer and use it in GitHub Desktop.
from google.appengine.ext import dbxg_on = db.create_transaction_options(xg=True)def my_txn():    x = MyModel(a=3)    x.put()    y = MyModel(a=7)    y.put()db.run_in_transaction_options(xg_on, my_txn)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment