# HG changeset patch # User Julien Cristau # Date 1398699815 -7200 # Node ID dff4bda87c6a968dc58af557cd4a4813f600520b # Parent d60dc7e03a45d10436fa9e66859ad14abc8b9e2d [doc] update 3.19 release notes diff -r d60dc7e03a45 -r dff4bda87c6a doc/3.19.rst --- a/doc/3.19.rst Mon Apr 28 12:41:41 2014 +0200 +++ b/doc/3.19.rst Mon Apr 28 17:43:35 2014 +0200 @@ -7,6 +7,8 @@ * implement Cross Origin Resource Sharing (CORS) (see `#2491768 `_) +* system_source.create_eid can get a range of IDs, to reduce overhead of batch + entity creation Behaviour Changes ----------------- @@ -31,10 +33,10 @@ manager to never miss an end:: with session.new_cnx() as cnx: - self.execute('INSERT Elephant E, E name "Cabar"') - self.commit() - self.execute('INSERT Elephant E, E name "Celeste"') - self.commit() + cnx.execute('INSERT Elephant E, E name "Babar"') + cnx.commit() + cnx.execute('INSERT Elephant E, E name "Celeste"') + cnx.commit() # Once you get out of the "with" clause, the connection is closed. Using the same Connection object in multiple threads will give you access to the