diff options
| author | Mike Bayer <mike_mp@zzzcomputing.com> | 2018-08-27 10:18:15 -0400 |
|---|---|---|
| committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2018-08-27 10:18:45 -0400 |
| commit | b1aa737a05bb34c96283628e69948eac3d413641 (patch) | |
| tree | f0404d904cf9eb259305200bc1e69c9d90dd7629 /lib/sqlalchemy/sql | |
| parent | c09b07fbb36ac288d32221349b019b490efc9ff3 (diff) | |
| download | sqlalchemy-b1aa737a05bb34c96283628e69948eac3d413641.tar.gz | |
Correct expanding docs to support empty lists
Change-Id: I9375b2055602216f9f25d32b2f7c035ae4280bd0
Diffstat (limited to 'lib/sqlalchemy/sql')
| -rw-r--r-- | lib/sqlalchemy/sql/elements.py | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/lib/sqlalchemy/sql/elements.py b/lib/sqlalchemy/sql/elements.py index 5f9fd2ebf..d79ba05af 100644 --- a/lib/sqlalchemy/sql/elements.py +++ b/lib/sqlalchemy/sql/elements.py @@ -1065,13 +1065,14 @@ class BindParameter(ColumnElement): an IN clause. .. note:: The "expanding" feature does not support "executemany"- - style parameter sets, nor does it support empty IN expressions. - - .. note:: The "expanding" feature should be considered as - **experimental** within the 1.2 series. + style parameter sets. .. versionadded:: 1.2 + .. versionchanged:: 1.3 the "expanding" bound parameter feature now + supports empty lists. + + .. seealso:: :ref:`coretutorial_bind_param` |
