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 /lib/sqlalchemy/interfaces.py | |
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 'lib/sqlalchemy/interfaces.py')
-rw-r--r-- | lib/sqlalchemy/interfaces.py | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/lib/sqlalchemy/interfaces.py b/lib/sqlalchemy/interfaces.py index ff29f1969..6cabcce29 100644 --- a/lib/sqlalchemy/interfaces.py +++ b/lib/sqlalchemy/interfaces.py @@ -4,7 +4,12 @@ # This module is part of SQLAlchemy and is released under # the MIT License: http://www.opensource.org/licenses/mit-license.php -"""Interfaces and abstract types.""" +"""Interfaces and abstract types. + +This module is **deprecated** and is superceded by the +event system. + +""" from sqlalchemy import event, util |