diff options
author | Mike Bayer <mike_mp@zzzcomputing.com> | 2012-07-28 15:50:05 -0400 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2012-07-28 15:50:05 -0400 |
commit | 27913554a85c308d81e6c018669d0246ceecc639 (patch) | |
tree | 191305298ce66000c95c9c8fec1e27350f0d206e /lib/sqlalchemy/interfaces.py | |
parent | 90571b3a3a4eca329ec14e9bd142ad2b96526d99 (diff) | |
download | sqlalchemy-27913554a85c308d81e6c018669d0246ceecc639.tar.gz |
trailing whitespace bonanza
Diffstat (limited to 'lib/sqlalchemy/interfaces.py')
-rw-r--r-- | lib/sqlalchemy/interfaces.py | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/lib/sqlalchemy/interfaces.py b/lib/sqlalchemy/interfaces.py index 02f9105ad..8fd7d90ee 100644 --- a/lib/sqlalchemy/interfaces.py +++ b/lib/sqlalchemy/interfaces.py @@ -17,8 +17,8 @@ from . import event, util class PoolListener(object): """Hooks into the lifecycle of connections in a :class:`.Pool`. - .. note:: - + .. note:: + :class:`.PoolListener` is deprecated. Please refer to :class:`.PoolEvents`. @@ -27,7 +27,7 @@ class PoolListener(object): class MyListener(PoolListener): def connect(self, dbapi_con, con_record): '''perform connect operations''' - # etc. + # etc. # create a new pool with a listener p = QueuePool(..., listeners=[MyListener()]) @@ -151,8 +151,8 @@ class PoolListener(object): class ConnectionProxy(object): """Allows interception of statement execution by Connections. - .. note:: - + .. note:: + :class:`.ConnectionProxy` is deprecated. Please refer to :class:`.ConnectionEvents`. @@ -194,7 +194,7 @@ class ConnectionProxy(object): event.listen(self, 'before_execute', adapt_execute) - def adapt_cursor_execute(conn, cursor, statement, + def adapt_cursor_execute(conn, cursor, statement, parameters,context, executemany, ): def execute_wrapper( |