diff options
author | Mike Bayer <mike_mp@zzzcomputing.com> | 2010-08-09 20:49:08 -0400 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2010-08-09 20:49:08 -0400 |
commit | a9288ca5bd979d8aab9921f71bf5b722b1c3ab3d (patch) | |
tree | b89e6de8cf87668b5dd5ef13c9fcbf331e3a9f6c /lib/sqlalchemy/interfaces.py | |
parent | 1c832aa51ccf4b0970b242d92a0f458cd2fb2a45 (diff) | |
download | sqlalchemy-a9288ca5bd979d8aab9921f71bf5b722b1c3ab3d.tar.gz |
working with how this will be documented and having some probs with sphinx
Diffstat (limited to 'lib/sqlalchemy/interfaces.py')
-rw-r--r-- | lib/sqlalchemy/interfaces.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/sqlalchemy/interfaces.py b/lib/sqlalchemy/interfaces.py index 4eaf4d4ad..36573bf43 100644 --- a/lib/sqlalchemy/interfaces.py +++ b/lib/sqlalchemy/interfaces.py @@ -14,7 +14,7 @@ class PoolListener(object): .. note:: :class:`PoolListener` is deprecated. Please refer to :func:`event.listen` as well as - :attr:`Pool.events`. + :attr:`.Pool.events`. Usage:: @@ -146,7 +146,8 @@ class ConnectionProxy(object): """Allows interception of statement execution by Connections. .. note:: :class:`ConnectionProxy` is deprecated. Please - refer to :func:`event.listen`. + refer to :func:`event.listen` as well as + :attr:`.Engine.events`. Either or both of the ``execute()`` and ``cursor_execute()`` may be implemented to intercept compiled statement and |