Files
sqlalchemy/examples/dynamic_dict/__init__.py
T
Mike Bayer 546015e6e1 - add a new sphinx extension "viewsource". takes advantage of part of the 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.
2013-11-09 19:42:01 -05:00

8 lines
248 B
Python

""" Illustrates how to place a dictionary-like facade on top of a
"dynamic" relation, so that dictionary operations (assuming simple
string keys) can operate upon a large collection without loading the
full collection at once.
.. autosource::
"""