]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
bool_op() wasn't added in 2.0
authorMike Bayer <mike_mp@zzzcomputing.com>
Wed, 18 May 2022 21:18:43 +0000 (17:18 -0400)
committerMike Bayer <mike_mp@zzzcomputing.com>
Wed, 18 May 2022 21:18:43 +0000 (17:18 -0400)
this method is in 1.4 as well, just doesn't do pep-484 yet.

Change-Id: I5a0aee8ad212864fc79e152ec9ea3bb3d12b6b04

doc/build/orm/join_conditions.rst

index f694f105466191444318b26945c749fcff4c68c6..0bad87d982e4c9dd73c5ad48129121385b301aca 100644 (file)
@@ -298,10 +298,6 @@ Will render as::
     SELECT ip_address.id AS ip_address_id, ip_address.v4address AS ip_address_v4address
     FROM ip_address JOIN network ON ip_address.v4address << network.v4representation
 
-.. versionadded:: 2.0  Added :meth:`.Operators.bool_op` to generate operators
-   that are inherently "boolean" when used in expressions and ORM join
-   conditions.
-
 .. _relationship_custom_operator_sql_function:
 
 Custom operators based on SQL functions