]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commit
- reorganization
authorMike Bayer <mike_mp@zzzcomputing.com>
Wed, 15 Sep 2010 00:43:48 +0000 (20:43 -0400)
committerMike Bayer <mike_mp@zzzcomputing.com>
Wed, 15 Sep 2010 00:43:48 +0000 (20:43 -0400)
commit3d389b19b70b65cb76226c3f3aa4c5d926e1f12b
treebdc597ebf2786f0514c8029dd2dbe2385bb9c2df
parent60b82d6e13246a3d88e7288e863a5231b7572c6a
- 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
21 files changed:
examples/custom_attributes/custom_management.py
lib/sqlalchemy/engine/base.py
lib/sqlalchemy/engine/threadlocal.py
lib/sqlalchemy/events.py [new file with mode: 0644]
lib/sqlalchemy/interfaces.py
lib/sqlalchemy/orm/attributes.py
lib/sqlalchemy/orm/deprecated_interfaces.py [new file with mode: 0644]
lib/sqlalchemy/orm/events.py [new file with mode: 0644]
lib/sqlalchemy/orm/instrumentation.py [new file with mode: 0644]
lib/sqlalchemy/orm/interfaces.py
lib/sqlalchemy/orm/mapper.py
lib/sqlalchemy/orm/state.py
lib/sqlalchemy/pool.py
lib/sqlalchemy/schema.py
test/engine/test_ddlevents.py
test/orm/test_attributes.py
test/orm/test_collection.py
test/orm/test_extendedattr.py
test/orm/test_instrumentation.py
test/orm/test_mapper.py
test/orm/test_merge.py