diff options
author | Mike Bayer <mike_mp@zzzcomputing.com> | 2006-04-06 19:01:14 +0000 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2006-04-06 19:01:14 +0000 |
commit | dbf936c30b14c81ccaa50a3082181bbdaa4d4d70 (patch) | |
tree | 70e3e268da43d3b0ba37c811e1d5563ebb87ec9e /examples/adjacencytree/byroot_tree.py | |
parent | ccb30be0a28a93f29fbd977da585368db255f554 (diff) | |
download | sqlalchemy-dbf936c30b14c81ccaa50a3082181bbdaa4d4d70.tar.gz |
added explicit "session" argument to get(), select_whereclause in mapper, as well as throughout the call-chain for those. lazy loader honors the "session" of the parent object, + added simple unit test
Diffstat (limited to 'examples/adjacencytree/byroot_tree.py')
-rw-r--r-- | examples/adjacencytree/byroot_tree.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/examples/adjacencytree/byroot_tree.py b/examples/adjacencytree/byroot_tree.py index f564b1f9e..ece90e8d5 100644 --- a/examples/adjacencytree/byroot_tree.py +++ b/examples/adjacencytree/byroot_tree.py @@ -45,6 +45,7 @@ class NodeList(util.OrderedDict): def __iter__(self): return iter(self.values()) + class TreeNode(object): """a hierarchical Tree class, which adds the concept of a "root node". The root is the topmost node in a tree, or in other words a node whose parent ID is NULL. |