summaryrefslogtreecommitdiff
path: root/test/orm/inheritance2.py
Commit message (Collapse)AuthorAgeFilesLines
* merging 0.4 branch to trunk. see CHANGES for details. 0.3 moves to ↵Mike Bayer2007-07-271-315/+0
| | | | maintenance branch in branches/rel_0_3.
* - added a standardized test harness for ORM testsMike Bayer2007-01-271-14/+3
| | | | - added three-level mapping test. needed some massaging for postgres
* - logging is now implemented via standard python "logging" module.Mike Bayer2006-09-241-3/+3
| | | | | | | | | | | | | "echo" keyword parameters are still functional but set/unset log levels for their respective classes/instances. all logging can be controlled directly through the Python API by setting INFO and DEBUG levels for loggers in the "sqlalchemy" namespace. class-level logging is under "sqlalchemy.<module>.<classname>", instance-level logging under "sqlalchemy.<module>.<classname>.<hexid>". Test suite includes "--log-info" and "--log-debug" arguments which work independently of --verbose/--quiet. Logging added to orm to allow tracking of mapper configurations, row iteration fixes [ticket:229] [ticket:79]
* inserting './lib/' into sys.path since PYTHONPATH no longer straightforward ↵Mike Bayer2006-06-291-1/+1
| | | | with latest setuptools
* some cleanup to the new compilation changesMike Bayer2006-06-201-1/+0
|
* late compilation of mappers. now you can create mappers in any order, and ↵Mike Bayer2006-06-081-21/+65
| | | | they will compile their internal state when first used in a query or flush operation (or their props or 'c'/'columns' attributes are used). includes various cleanups and fixes in support of the change, including some unit test changes, additional unit tests.
* reorganized unit tests into subdirectoriesMike Bayer2006-06-051-0/+283