From: Mike Bayer Date: Sat, 18 Aug 2012 05:12:55 +0000 (-0400) Subject: versionadded X-Git-Tag: rel_0_8_0b1~228 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=24a071921c2e8133a393284c700c106e13242cf5;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git versionadded --- diff --git a/doc/build/core/types.rst b/doc/build/core/types.rst index d3278e0675..9a7ff3414d 100644 --- a/doc/build/core/types.rst +++ b/doc/build/core/types.rst @@ -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 diff --git a/lib/sqlalchemy/types.py b/lib/sqlalchemy/types.py index 87d6565462..6c936fa3eb 100644 --- a/lib/sqlalchemy/types.py +++ b/lib/sqlalchemy/types.py @@ -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. """