diff options
| author | Mike Bayer <mike_mp@zzzcomputing.com> | 2014-05-30 01:32:53 -0400 |
|---|---|---|
| committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2014-05-30 01:32:53 -0400 |
| commit | 69dbcdd0ebf8de81643c038276fcc822a7b0bd0b (patch) | |
| tree | b6cc4a9e12f8ac04b164068d4df8096475b755e2 /lib/sqlalchemy/orm/base.py | |
| parent | 2c8689fd141c278a7bbc250087e553b76a515bc6 (diff) | |
| download | sqlalchemy-69dbcdd0ebf8de81643c038276fcc822a7b0bd0b.tar.gz | |
- Related to :ticket:`3060`, an adjustment has been made to the unit
of work such that loading for related many-to-one objects is slightly
more aggressive, in the case of a graph of self-referential objects
that are to be deleted; the load of related objects is to help
determine the correct order for deletion if passive_deletes is
not set.
- revert the changes to test_delete_unloaded_m2o, these deletes do in fact
need to occur in the order of the two child objects first.
Diffstat (limited to 'lib/sqlalchemy/orm/base.py')
| -rw-r--r-- | lib/sqlalchemy/orm/base.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/sqlalchemy/orm/base.py b/lib/sqlalchemy/orm/base.py index 896041980..30603cba1 100644 --- a/lib/sqlalchemy/orm/base.py +++ b/lib/sqlalchemy/orm/base.py @@ -152,7 +152,6 @@ NOT_EXTENSION = util.symbol('NOT_EXTENSION', """) _none_set = frozenset([None, NEVER_SET, PASSIVE_NO_RESULT]) -_none_tuple = tuple(_none_set) # for "in" checks that won't trip __hash__ def _generative(*assertions): |
