From ffc681d3f9cbf33e5eecc35912403b77605de5fb Mon Sep 17 00:00:00 2001 From: Mike Bayer Date: Tue, 31 May 2011 17:32:19 -0400 Subject: [PATCH] update out of date docstring --- lib/sqlalchemy/orm/interfaces.py | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) 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): -- 2.39.5