diff options
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. """ |