diff options
| author | Mike Bayer <mike_mp@zzzcomputing.com> | 2012-01-30 19:52:07 -0500 |
|---|---|---|
| committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2012-01-30 19:52:07 -0500 |
| commit | b40450d0a1389edd02366f284199ecbf7d566ff1 (patch) | |
| tree | 67dd8a53b909e09abb6d73fa3a3d2756b0d70c2a /lib/sqlalchemy/orm/sync.py | |
| parent | 1f057987da6ee5ca6da94384a0603e4fee13dff8 (diff) | |
| download | sqlalchemy-b40450d0a1389edd02366f284199ecbf7d566ff1.tar.gz | |
break out _save_obj(), _delete_obj(), _post_update() into a new module
persistence.py - Mapper loses awareness of how to emit INSERT/UPDATE/DELETE,
persistence.py is only used by unitofwork.py. Then break each method out
into a top level with almost no logic, calling into _organize_states_for_XYZ(),
_collect_XYZ_commands(), _emit_XYZ_statements().
Diffstat (limited to 'lib/sqlalchemy/orm/sync.py')
| -rw-r--r-- | lib/sqlalchemy/orm/sync.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/sqlalchemy/orm/sync.py b/lib/sqlalchemy/orm/sync.py index b016e81a0..a20e871e4 100644 --- a/lib/sqlalchemy/orm/sync.py +++ b/lib/sqlalchemy/orm/sync.py @@ -6,6 +6,7 @@ """private module containing functions used for copying data between instances based on join conditions. + """ from sqlalchemy.orm import exc, util as mapperutil, attributes |
