From: Mike Bayer Date: Wed, 30 Jan 2008 19:19:21 +0000 (+0000) Subject: docstring fix X-Git-Tag: rel_0_4_3~63 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=204e7201d21e5b850050ac511cb108a36c37e738;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git docstring fix --- diff --git a/lib/sqlalchemy/orm/interfaces.py b/lib/sqlalchemy/orm/interfaces.py index fc8a0e3926..d34cca7faa 100644 --- a/lib/sqlalchemy/orm/interfaces.py +++ b/lib/sqlalchemy/orm/interfaces.py @@ -135,7 +135,7 @@ class MapperExtension(object): created from that row. The method can choose to create the instance itself, or it can - return None to indicate normal object creation should take + return EXT_CONTINUE to indicate normal object creation should take place. mapper @@ -149,6 +149,9 @@ class MapperExtension(object): class\_ The class we are mapping. + + return value + A new object instance, or EXT_CONTINUE """ return EXT_CONTINUE