diff options
| author | Mike Bayer <mike_mp@zzzcomputing.com> | 2012-06-23 14:45:47 -0400 |
|---|---|---|
| committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2012-06-23 14:45:47 -0400 |
| commit | 0efac1d93e27220f2aa1ec09b282fb08a7bb02be (patch) | |
| tree | dbd806874a223253d0c8f52465a77f7e0754c7a8 /lib/sqlalchemy/orm/instrumentation.py | |
| parent | df62f4501ee1ec37113477eb6a97068cc07faf5d (diff) | |
| download | sqlalchemy-0efac1d93e27220f2aa1ec09b282fb08a7bb02be.tar.gz | |
- move all of orm to use absolute imports
- break out key mechanics of loading objects
into new "orm.loading" module, removing implementation
details from both mapper.py and query.py. is analogous
to persistence.py
- some other cleanup and old cruft removal
Diffstat (limited to 'lib/sqlalchemy/orm/instrumentation.py')
| -rw-r--r-- | lib/sqlalchemy/orm/instrumentation.py | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/lib/sqlalchemy/orm/instrumentation.py b/lib/sqlalchemy/orm/instrumentation.py index e9d1ca36a..c32203939 100644 --- a/lib/sqlalchemy/orm/instrumentation.py +++ b/lib/sqlalchemy/orm/instrumentation.py @@ -21,11 +21,10 @@ An example of full customization is in /examples/custom_attributes. """ -from sqlalchemy.orm import exc, collections, events -from operator import attrgetter, itemgetter -from sqlalchemy import event, util, inspection +from . import exc, collections, events, state, attributes +from operator import attrgetter +from .. import event, util import weakref -from sqlalchemy.orm import state, attributes INSTRUMENTATION_MANAGER = '__sa_instrumentation_manager__' |
