diff options
author | Mike Bayer <mike_mp@zzzcomputing.com> | 2011-12-25 17:34:24 -0500 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2011-12-25 17:34:24 -0500 |
commit | 68f6951019dce746a0d093ee597e89d68f4d8fc0 (patch) | |
tree | 24c6c415aacf75e2a24215626215f7853e0b9469 /lib/sqlalchemy/ext/sqlsoup.py | |
parent | 6ed0d7e3339dd14daad612f9ac6dd2f5e90ef517 (diff) | |
download | sqlalchemy-68f6951019dce746a0d093ee597e89d68f4d8fc0.tar.gz |
fix a whole bunch of note:: / warning:: that were inline,
no longer compatible with docutils 0.8
Diffstat (limited to 'lib/sqlalchemy/ext/sqlsoup.py')
-rw-r--r-- | lib/sqlalchemy/ext/sqlsoup.py | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/lib/sqlalchemy/ext/sqlsoup.py b/lib/sqlalchemy/ext/sqlsoup.py index fe2f74137..189aa1af1 100644 --- a/lib/sqlalchemy/ext/sqlsoup.py +++ b/lib/sqlalchemy/ext/sqlsoup.py @@ -6,7 +6,9 @@ """ -.. note:: SQLSoup will no longer be included with SQLAlchemy as of 0.8. +.. note:: + + SQLSoup will no longer be included with SQLAlchemy as of 0.8. Look for a third party project replicating its functionality soon. @@ -250,8 +252,10 @@ Advanced Use Sessions, Transations and Application Integration ------------------------------------------------- -**Note:** please read and understand this section thoroughly -before using SqlSoup in any web application. +.. note:: + + Please read and understand this section thoroughly + before using SqlSoup in any web application. SqlSoup uses a ScopedSession to provide thread-local sessions. You can get a reference to the current one like this:: |