diff options
author | Mike Bayer <mike_mp@zzzcomputing.com> | 2006-04-18 18:24:07 +0000 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2006-04-18 18:24:07 +0000 |
commit | 3ffa0bda31e2e590ff28f1bb1cccccda010b4462 (patch) | |
tree | fe562d72a1c1c6f32fddf47911db85fe2d7a7057 /lib/sqlalchemy/mapping/query.py | |
parent | 5b1871de64019c29bd093297e9194d5de7b93487 (diff) | |
download | sqlalchemy-3ffa0bda31e2e590ff28f1bb1cccccda010b4462.tar.gz |
mapper will verify class inheritance scheme; also will not re-init inherited property, as the improved attribute system seems to handle inheritance OK and allows the property to keep its correct initialization on the parent
exceptions import in query
Diffstat (limited to 'lib/sqlalchemy/mapping/query.py')
-rw-r--r-- | lib/sqlalchemy/mapping/query.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/sqlalchemy/mapping/query.py b/lib/sqlalchemy/mapping/query.py index 72037a347..8233fba65 100644 --- a/lib/sqlalchemy/mapping/query.py +++ b/lib/sqlalchemy/mapping/query.py @@ -9,6 +9,7 @@ import objectstore import sqlalchemy.sql as sql import sqlalchemy.util as util import mapper +from sqlalchemy.exceptions import * class Query(object): """encapsulates the object-fetching operations provided by Mappers.""" |