]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
versionadded
authorMike Bayer <mike_mp@zzzcomputing.com>
Sat, 18 Aug 2012 05:12:55 +0000 (01:12 -0400)
committerMike Bayer <mike_mp@zzzcomputing.com>
Sat, 18 Aug 2012 05:12:55 +0000 (01:12 -0400)
doc/build/core/types.rst
lib/sqlalchemy/types.py

index d3278e06750d92a5c58240b517b33bc5b5eb74d1..9a7ff3414ddd5324fff10d81d002b93a9e7fc0a1 100644 (file)
@@ -687,9 +687,8 @@ Postgresql factorial operator::
                             modifier=operators.custom_op("!"),
                             type_=MyInteger)
 
-
-
-
+.. versionadded:: 0.8  The expression system was enhanced to support
+  customization of operators on a per-type level.
 
 
 Creating New Types
index 87d65654629d1b488a41a3e012d7704f7fa3c6cf..6c936fa3eb06565833990c3d47fd61e2504a77b5 100644 (file)
@@ -125,8 +125,8 @@ class TypeEngine(AbstractType):
         >>> (c1 == c2).type
         Boolean()
 
-    .. versionadded:: 0.8  The expression system was reworked to support
-      user-defined comparator objects specified at the type level.
+    .. versionadded:: 0.8  The expression system was enhanced to support
+      customization of operators on a per-type level.
 
     """