From: Mike Bayer Date: Mon, 27 Aug 2018 14:18:15 +0000 (-0400) Subject: Correct expanding docs to support empty lists X-Git-Tag: rel_1_3_0b1~93 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b1aa737a05bb34c96283628e69948eac3d413641;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git Correct expanding docs to support empty lists Change-Id: I9375b2055602216f9f25d32b2f7c035ae4280bd0 --- diff --git a/lib/sqlalchemy/sql/elements.py b/lib/sqlalchemy/sql/elements.py index 5f9fd2ebf5..d79ba05af6 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`