summaryrefslogtreecommitdiff
path: root/doc/build/gen_docstrings.py
diff options
context:
space:
mode:
authorJason Kirtland <jek@discorporate.us>2007-05-02 20:17:31 +0000
committerJason Kirtland <jek@discorporate.us>2007-05-02 20:17:31 +0000
commitbb7a29d6228b4cdefb3d85b204c46a87e898e34c (patch)
treecd5ab3e8810173e09d87a68cee1315756f0bcee2 /doc/build/gen_docstrings.py
parente80266338958c4cc0155c51f286a4b7ab088e6c0 (diff)
downloadsqlalchemy-bb7a29d6228b4cdefb3d85b204c46a87e898e34c.tar.gz
- added sqlalchemy.ext.orderinglist, a custom list class that synchronizes an object attribute with that object's position in the list
Diffstat (limited to 'doc/build/gen_docstrings.py')
-rw-r--r--doc/build/gen_docstrings.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/doc/build/gen_docstrings.py b/doc/build/gen_docstrings.py
index e46c413eb..330b9dcba 100644
--- a/doc/build/gen_docstrings.py
+++ b/doc/build/gen_docstrings.py
@@ -7,6 +7,7 @@ import sqlalchemy.ext.proxy as proxy
import sqlalchemy.ext.sessioncontext as sessioncontext
import sqlalchemy.mods.threadlocal as threadlocal
import sqlalchemy.ext.selectresults as selectresults
+import sqlalchemy.ext.orderinglist as orderinglist
def make_doc(obj, classes=None, functions=None, **kwargs):
"""generate a docstring.ObjectDoc structure for an individual module, list of classes, and list of functions."""
@@ -36,6 +37,7 @@ def make_all_docs():
make_doc(obj=threadlocal),
make_doc(obj=selectresults),
make_doc(obj=proxy),
+ make_doc(obj=orderinglist, classes=[orderinglist.OrderingList]),
] + [make_doc(getattr(__import__('sqlalchemy.databases.%s' % m).databases, m)) for m in databases.__all__]
return objects