diff options
| author | Mike Bayer <mike_mp@zzzcomputing.com> | 2014-02-25 19:52:17 -0500 |
|---|---|---|
| committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2014-02-25 19:52:17 -0500 |
| commit | 33f07202ce2d9d34f346e9629dc602d920091cf1 (patch) | |
| tree | f41459bbfad1e2068c640405e682adb8236d3896 /doc/build/builder | |
| parent | e60529da797491e9e88e9fcc581334ad3a09bcc2 (diff) | |
| download | sqlalchemy-33f07202ce2d9d34f346e9629dc602d920091cf1.tar.gz | |
- The new dialect-level keyword argument system for schema-level
constructs has been enhanced in order to assist with existing
schemes that rely upon addition of ad-hoc keyword arguments to
constructs.
- To suit the use case of allowing custom arguments at construction time,
the :meth:`.DialectKWArgs.argument_for` method now allows this registration.
fixes #2962
Diffstat (limited to 'doc/build/builder')
| -rw-r--r-- | doc/build/builder/autodoc_mods.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/build/builder/autodoc_mods.py b/doc/build/builder/autodoc_mods.py index 93e2596be..8e13d76af 100644 --- a/doc/build/builder/autodoc_mods.py +++ b/doc/build/builder/autodoc_mods.py @@ -22,7 +22,7 @@ _convert_modname = { } _convert_modname_w_class = { - ("sqlalchemy.engine.interfaces", "Connectable"): "sqlalchemy.engine" + ("sqlalchemy.engine.interfaces", "Connectable"): "sqlalchemy.engine", } def _adjust_rendered_mod_name(modname, objname): |
