]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
Correct expanding docs to support empty lists
authorMike Bayer <mike_mp@zzzcomputing.com>
Mon, 27 Aug 2018 14:18:15 +0000 (10:18 -0400)
committerMike Bayer <mike_mp@zzzcomputing.com>
Mon, 27 Aug 2018 14:18:45 +0000 (10:18 -0400)
Change-Id: I9375b2055602216f9f25d32b2f7c035ae4280bd0

lib/sqlalchemy/sql/elements.py

index 5f9fd2ebf568a3d619b34992fbabcca63a0f0ed6..d79ba05af60b6dfe8273c8473c711fe16d2234e4 100644 (file)
@@ -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`