mirror of
https://github.com/sqlalchemy/sqlalchemy.git
synced 2026-05-15 13:17:24 -04:00
1e1a38e780
This is a straight reformat run using black as is, with no edits applied at all. The black run will format code consistently, however in some cases that are prevalent in SQLAlchemy code it produces too-long lines. The too-long lines will be resolved in the following commit that will resolve all remaining flake8 issues including shadowed builtins, long lines, import order, unused imports, duplicate imports, and docstring issues. Change-Id: I7eda77fed3d8e73df84b3651fd6cfcfe858d4dc9
9 lines
249 B
Python
9 lines
249 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::
|
|
|
|
"""
|