summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/orm/interfaces.py
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2011-05-31 17:32:19 -0400
committerMike Bayer <mike_mp@zzzcomputing.com>2011-05-31 17:32:19 -0400
commitffc681d3f9cbf33e5eecc35912403b77605de5fb (patch)
tree25a01994a185a20d911b475f8ad7518ab82825d3 /lib/sqlalchemy/orm/interfaces.py
parent95e0f96d055d1f4374d174e29856e56173a3eacf (diff)
downloadsqlalchemy-ffc681d3f9cbf33e5eecc35912403b77605de5fb.tar.gz
update out of date docstring
Diffstat (limited to 'lib/sqlalchemy/orm/interfaces.py')
-rw-r--r--lib/sqlalchemy/orm/interfaces.py11
1 files changed, 5 insertions, 6 deletions
diff --git a/lib/sqlalchemy/orm/interfaces.py b/lib/sqlalchemy/orm/interfaces.py
index 62d0fb79f..1c4b59ca3 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):