diff options
| author | Mike Bayer <mike_mp@zzzcomputing.com> | 2008-01-30 19:19:21 +0000 |
|---|---|---|
| committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2008-01-30 19:19:21 +0000 |
| commit | 204e7201d21e5b850050ac511cb108a36c37e738 (patch) | |
| tree | 7ef0e6cc92732ad9f64c6e5577e6cbb8c4b47a17 /lib/sqlalchemy | |
| parent | d2e4c52b9f7c7484a6c6722446971b8980472e87 (diff) | |
| download | sqlalchemy-204e7201d21e5b850050ac511cb108a36c37e738.tar.gz | |
docstring fix
Diffstat (limited to 'lib/sqlalchemy')
| -rw-r--r-- | lib/sqlalchemy/orm/interfaces.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/sqlalchemy/orm/interfaces.py b/lib/sqlalchemy/orm/interfaces.py index fc8a0e392..d34cca7fa 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 |
