]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commit
- attributes module and test suite moves underneath 'orm' package
authorMike Bayer <mike_mp@zzzcomputing.com>
Sun, 22 Oct 2006 00:24:26 +0000 (00:24 +0000)
committerMike Bayer <mike_mp@zzzcomputing.com>
Sun, 22 Oct 2006 00:24:26 +0000 (00:24 +0000)
commitbc240be3f87b41232671e4da7f59679744959154
tree4e978300d6e796f8a476b2e6ccf543ba2e9d881f
parent97feb4dbeee3ef5bc50de667ec25a43d44a5ff2c
- attributes module and test suite moves underneath 'orm' package
- fixed table comparison example in metadata.txt
- docstrings all over the place
- renamed mapper _getattrbycolumn/_setattrbycolumn to get_attr_by_column,set_attr_by_column
- removed frommapper parameter from populate_instance().  the two operations can be performed separately
- fix to examples/adjacencytree/byroot_tree.py to fire off lazy loaders upon load, to reduce query calling
- added get(), get_by(), load() to MapperExtension
- re-implemented ExtensionOption (called by extension() function)
- redid _ExtensionCarrier to function dynamically based on __getattribute__
- added logging to attributes package, indicating the execution of a lazy callable
- going to close [ticket:329]
15 files changed:
doc/build/content/metadata.txt
examples/adjacencytree/byroot_tree.py
lib/sqlalchemy/engine/base.py
lib/sqlalchemy/mods/legacy_session.py
lib/sqlalchemy/mods/threadlocal.py
lib/sqlalchemy/orm/attributes.py [moved from lib/sqlalchemy/attributes.py with 98% similarity]
lib/sqlalchemy/orm/mapper.py
lib/sqlalchemy/orm/properties.py
lib/sqlalchemy/orm/query.py
lib/sqlalchemy/orm/strategies.py
lib/sqlalchemy/orm/sync.py
lib/sqlalchemy/orm/unitofwork.py
test/base/alltests.py
test/orm/alltests.py
test/orm/attributes.py [moved from test/base/attributes.py with 99% similarity]