diff options
author | mike bayer <mike_mp@zzzcomputing.com> | 2013-11-29 13:11:27 -0800 |
---|---|---|
committer | mike bayer <mike_mp@zzzcomputing.com> | 2013-11-29 13:11:27 -0800 |
commit | c6ba175d206b9c28fa10b4fc12a72cd1808875a7 (patch) | |
tree | 814cc733bf55ebaaa4eaa76468da0b599bb0914e /lib/sqlalchemy/sql/selectable.py | |
parent | 92133bc3d8d66411cb8c0fbc8dcfefe6778b6f03 (diff) | |
parent | c8c88213a762a0365dcdd6752fd82d5bd115e90e (diff) | |
download | sqlalchemy-c6ba175d206b9c28fa10b4fc12a72cd1808875a7.tar.gz |
Merge pull request #46 from vrajmohan/master
More fixes for cross references and reducing warnings (3rd wave)
Diffstat (limited to 'lib/sqlalchemy/sql/selectable.py')
-rw-r--r-- | lib/sqlalchemy/sql/selectable.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/sqlalchemy/sql/selectable.py b/lib/sqlalchemy/sql/selectable.py index 11638b0ae..b850e1465 100644 --- a/lib/sqlalchemy/sql/selectable.py +++ b/lib/sqlalchemy/sql/selectable.py @@ -1950,7 +1950,7 @@ class Select(HasPrefixes, GenerativeSelect): to set the autocommit option. :param bind=None: - an :class:`~.base.Engine` or :class:`~.base.Connection` instance + an :class:`~.Engine` or :class:`~.Connection` instance to which the resulting :class:`.Select` object will be bound. The :class:`.Select` object will otherwise automatically bind to whatever |