diff options
Diffstat (limited to 'lib/sqlalchemy/orm/session.py')
-rw-r--r-- | lib/sqlalchemy/orm/session.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/sqlalchemy/orm/session.py b/lib/sqlalchemy/orm/session.py index 06d5b89a1..4727de218 100644 --- a/lib/sqlalchemy/orm/session.py +++ b/lib/sqlalchemy/orm/session.py @@ -497,8 +497,8 @@ class Session(object): issue any SQL in order to load collections or attributes which are not yet loaded, or were marked as "expired". - The session methods which control instance state include ``add()``, - ``delete()``, ``merge()``, and ``expunge()``. + The session methods which control instance state include :meth:`.Session.add`, + :meth:`.Session.delete`, :meth:`.Session.merge`, and :meth:`.Session.expunge`. The Session object is generally **not** threadsafe. A session which is set to ``autocommit`` and is only read from may be used by concurrent |