From: Mike Bayer Date: Tue, 4 Mar 2008 00:40:40 +0000 (+0000) Subject: fix markdown bug X-Git-Tag: rel_0_4_4~41 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2f0a16365660ca0f1c910bba2aa62b6177d88044;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git fix markdown bug --- diff --git a/doc/build/content/session.txt b/doc/build/content/session.txt index 675fff470c..411f687e92 100644 --- a/doc/build/content/session.txt +++ b/doc/build/content/session.txt @@ -466,7 +466,7 @@ Things to note above: * When using a transactional session, either a `rollback()` or a `close()` call **is required** when an error is raised by `flush()` or `commit()`. The `flush()` error condition will issue a ROLLBACK to the database automatically, but the state of the `Session` itself remains in an "undefined" state until the user decides whether to rollback or close. * The `commit()` call unconditionally issues a `flush()`. Particularly when using `transactional=True` in conjunction with `autoflush=True`, explicit `flush()` calls are usually not needed. - + Alternatively, a transaction can be begun explicitly using `begin()`: {python}