summaryrefslogtreecommitdiff
path: root/examples/inheritance/joined.py
Commit message (Collapse)AuthorAgeFilesLines
* - add a new sphinx extension "viewsource". takes advantage of part of the ↵Mike Bayer2013-11-091-1/+1
| | | | | | | | | viewcode extension to allow ad-hoc display of the source of any file, as well as a "directory listing" structure. - reorganize examples/ to take advantage of new extension. in particular, keep moving all the descriptive text for files etc. into module docstrings, taking more advantage of self-documentation.
* - reorganize docs so expression, schema are broken out into subfiles, ↵Mike Bayer2013-08-181-0/+1
| | | | | | they're too big - fix the targeting of module names moved around by using custom handlers for "Bases", etc.
* - the raw 2to3 runMike Bayer2013-04-271-7/+7
| | | | - went through examples/ and cleaned out excess list() calls
* -whitespace bonanza, contdMike Bayer2012-07-281-10/+10
|
* - [feature] New standalone function with_polymorphic()Mike Bayer2012-04-231-0/+135
provides the functionality of query.with_polymorphic() in a standalone form. It can be applied to any entity within a query, including as the target of a join in place of the "of_type()" modifier. [ticket:2333] - redo a large portion of the inheritance docs in terms of declarative, new with_polymorphic() function - upgrade examples/inheritance/polymorph, rename to "joined"