From 2f0a16365660ca0f1c910bba2aa62b6177d88044 Mon Sep 17 00:00:00 2001 From: Mike Bayer Date: Tue, 4 Mar 2008 00:40:40 +0000 Subject: [PATCH] fix markdown bug --- doc/build/content/session.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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} -- 2.47.3