diff options
author | Mike Bayer <mike_mp@zzzcomputing.com> | 2007-12-18 23:53:40 +0000 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2007-12-18 23:53:40 +0000 |
commit | ba0267a955d40efb09de06ce226fbab63994aa78 (patch) | |
tree | b2a24709e6b3c474949e0ee50b2755c24cc49e56 /lib/sqlalchemy/engine/strategies.py | |
parent | 1dc4546aa95d3adfff910430afe922bf137bf595 (diff) | |
download | sqlalchemy-ba0267a955d40efb09de06ce226fbab63994aa78.tar.gz |
introductory docstring bonanza
Diffstat (limited to 'lib/sqlalchemy/engine/strategies.py')
-rw-r--r-- | lib/sqlalchemy/engine/strategies.py | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/lib/sqlalchemy/engine/strategies.py b/lib/sqlalchemy/engine/strategies.py index 175846ff8..d4a0ad841 100644 --- a/lib/sqlalchemy/engine/strategies.py +++ b/lib/sqlalchemy/engine/strategies.py @@ -1,10 +1,13 @@ """Strategies for creating new instances of Engine types. -By default there are two, one which is the "thread-local" strategy, -one which is the "plain" strategy. - -New strategies can be added via constructing a new EngineStrategy -object which will add itself to the list of available strategies. +These are semi-private implementation classes which +provide the underlying behavior for the "strategy" keyword argument +available on [sqlalchemy.engine#create_engine()]. +Current available options are ``plain``, ``threadlocal``, and +``mock``. + +New strategies can be added via new ``EngineStrategy`` +classes. """ |