From: Mike Bayer Date: Tue, 31 May 2011 21:32:19 +0000 (-0400) Subject: update out of date docstring X-Git-Tag: rel_0_7_1~22 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ffc681d3f9cbf33e5eecc35912403b77605de5fb;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git update out of date docstring --- diff --git a/lib/sqlalchemy/orm/interfaces.py b/lib/sqlalchemy/orm/interfaces.py index 62d0fb79f7..1c4b59ca39 100644 --- a/lib/sqlalchemy/orm/interfaces.py +++ b/lib/sqlalchemy/orm/interfaces.py @@ -623,15 +623,14 @@ class LoaderStrategy(object): * it processes the ``QueryContext`` at statement construction time, where it can modify the SQL statement that is being produced. - simple column attributes may add their represented column to the + Simple column attributes may add their represented column to the list of selected columns, *eager loading* properties may add ``LEFT OUTER JOIN`` clauses to the statement. - * it processes the ``SelectionContext`` at row-processing time. This - includes straight population of attributes corresponding to rows, - setting instance-level lazyloader callables on newly - constructed instances, and appending child items to scalar/collection - attributes in response to eagerly-loaded relations. + * It produces "row processor" functions at result fetching time. + These "row processor" functions populate a particular attribute + on a particular mapped instance. + """ def __init__(self, parent):