diff options
author | Mike Bayer <mike_mp@zzzcomputing.com> | 2005-10-23 06:30:34 +0000 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2005-10-23 06:30:34 +0000 |
commit | 393361599f2fe77cd40b218e04bcc6ecbc82d5dc (patch) | |
tree | 615a86891f346e63ef6835f13b7d3a908e42bb13 /lib/sqlalchemy/util.py | |
parent | 4875c3702c3d59072a3d074f4c3c384ebd6ffa9b (diff) | |
download | sqlalchemy-393361599f2fe77cd40b218e04bcc6ecbc82d5dc.tar.gz |
Diffstat (limited to 'lib/sqlalchemy/util.py')
-rw-r--r-- | lib/sqlalchemy/util.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/sqlalchemy/util.py b/lib/sqlalchemy/util.py index 063291dde..2b0510f11 100644 --- a/lib/sqlalchemy/util.py +++ b/lib/sqlalchemy/util.py @@ -324,8 +324,8 @@ class ScopedRegistry(object): class DependencySorter(object): """creates a "dependency tree" across a list of objects, using a series of 'dependency relationships' expressed as a list of tuples to determine its shape. the tuples are of the form (x,y) which indicate - 'y is dependent on x', as well as a list of - elements which represent the full collection of elements. + 'y is dependent on x'. + a list of additional elements who may or may not be expressed within the tuples is also supplied. If a tuple contains the same value dependent on itself, the corresponding node is marked as "circular", indicating the node is dependent on itself. |