diff options
author | Mike Bayer <mike_mp@zzzcomputing.com> | 2019-01-15 16:12:39 -0500 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2019-01-15 16:14:01 -0500 |
commit | 26a8e46527b6443839044855a920ec1f298b03c8 (patch) | |
tree | 10a674830d087c243d9ebd8e045625867636aabd /lib/sqlalchemy/events.py | |
parent | e1b299df819bc1a48ed565bd6efa8ee406ea7efa (diff) | |
download | sqlalchemy-26a8e46527b6443839044855a920ec1f298b03c8.tar.gz |
Convert most "See also" phrases into .. seealso::
Change-Id: Ie32598b895c1c5f5bce7c8e1573abbcfe9d434a8
(cherry picked from commit e81d3815abb36c52b0019dee6e4f67990e3d1c7d)
Diffstat (limited to 'lib/sqlalchemy/events.py')
-rw-r--r-- | lib/sqlalchemy/events.py | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/lib/sqlalchemy/events.py b/lib/sqlalchemy/events.py index c1b6f3740..5eb84a156 100644 --- a/lib/sqlalchemy/events.py +++ b/lib/sqlalchemy/events.py @@ -80,8 +80,7 @@ class DDLEvents(event.Events): The above :class:`.DDL` object will also be associated with the :class:`.Table` object represented by ``new_table``. - - See also: + .. seealso:: :ref:`event_toplevel` @@ -669,9 +668,9 @@ class ConnectionEvents(event.Events): :param multiparams: Multiple parameter sets, a list of dictionaries. :param params: Single parameter set, a single dictionary. - See also: + .. seealso:: - :meth:`.before_cursor_execute` + :meth:`.before_cursor_execute` """ @@ -722,11 +721,11 @@ class ConnectionEvents(event.Events): :param executemany: boolean, if ``True``, this is an ``executemany()`` call, if ``False``, this is an ``execute()`` call. - See also: + .. seealso:: - :meth:`.before_execute` + :meth:`.before_execute` - :meth:`.after_cursor_execute` + :meth:`.after_cursor_execute` """ |