diff options
| author | Mike Bayer <mike_mp@zzzcomputing.com> | 2010-09-14 20:43:48 -0400 |
|---|---|---|
| committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2010-09-14 20:43:48 -0400 |
| commit | 3d389b19b70b65cb76226c3f3aa4c5d926e1f12b (patch) | |
| tree | bdc597ebf2786f0514c8029dd2dbe2385bb9c2df /examples | |
| parent | 60b82d6e13246a3d88e7288e863a5231b7572c6a (diff) | |
| download | sqlalchemy-3d389b19b70b65cb76226c3f3aa4c5d926e1f12b.tar.gz | |
- reorganization
- attrbutes.py splits into attribtes.py and instrumentation.py
- all the various Event subclasses go into events.py modules
- some ideas for orm events
- move *Extension out to deprecated_interfaces
Diffstat (limited to 'examples')
| -rw-r--r-- | examples/custom_attributes/custom_management.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/examples/custom_attributes/custom_management.py b/examples/custom_attributes/custom_management.py index 4d135edcd..03d38c26a 100644 --- a/examples/custom_attributes/custom_management.py +++ b/examples/custom_attributes/custom_management.py @@ -14,7 +14,8 @@ from sqlalchemy import (create_engine, MetaData, Table, Column, Integer, Text, from sqlalchemy.orm import (mapper, relationship, create_session, InstrumentationManager) -from sqlalchemy.orm.attributes import set_attribute, get_attribute, del_attribute, is_instrumented +from sqlalchemy.orm.attributes import set_attribute, get_attribute, del_attribute +from sqlalchemy.orm.instrumentation import is_instrumented from sqlalchemy.orm.collections import collection_adapter |
