diff options
author | Mike Bayer <mike_mp@zzzcomputing.com> | 2020-09-13 13:15:29 -0400 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2020-09-13 13:15:29 -0400 |
commit | 5de0688fae17f60dc3c9e1c2782c9f6c8a621291 (patch) | |
tree | 7c025e2c591264b5fae50c095a0f7e9953dbce01 /lib/sqlalchemy/future/engine.py | |
parent | a4bfde4a18e50d93e44aec5c6216be8a6f9fbacb (diff) | |
download | sqlalchemy-5de0688fae17f60dc3c9e1c2782c9f6c8a621291.tar.gz |
Update session.execute() and related documentation
The docs here were completely out of date and referred
to behaviors that are no longer true, behaviors that are
deprecated, etc. For the moment, take out all the verbiage
so that nothing incorrect is present. New ORM documentation
will need to be constructed to support this statement.
Change-Id: I4782aebb6443ceb68752c3b52b574fd30658ebc9
Diffstat (limited to 'lib/sqlalchemy/future/engine.py')
-rw-r--r-- | lib/sqlalchemy/future/engine.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/sqlalchemy/future/engine.py b/lib/sqlalchemy/future/engine.py index dd72360ed..d2f609326 100644 --- a/lib/sqlalchemy/future/engine.py +++ b/lib/sqlalchemy/future/engine.py @@ -255,7 +255,7 @@ class Connection(_LegacyConnection): r"""Executes a SQL statement construct and returns a :class:`_engine.Result`. - :param object: The statement to be executed. This is always + :param statement: The statement to be executed. This is always an object that is in both the :class:`_expression.ClauseElement` and :class:`_expression.Executable` hierarchies, including: |