diff options
| author | Michael Trier <mtrier@gmail.com> | 2008-07-02 15:37:02 +0000 |
|---|---|---|
| committer | Michael Trier <mtrier@gmail.com> | 2008-07-02 15:37:02 +0000 |
| commit | 644d7ea600249af027b8beb133bde94107baf578 (patch) | |
| tree | 16452e503dc5f950a755e93eb12e9d00fff70c86 | |
| parent | 38180f855aa5a152f89592e5acfbe6f697c28e09 (diff) | |
| download | sqlalchemy-644d7ea600249af027b8beb133bde94107baf578.tar.gz | |
Corrected docstring for Pool class to show that the default value for use_threadlocal is False. closes #1095.
| -rw-r--r-- | lib/sqlalchemy/pool.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/sqlalchemy/pool.py b/lib/sqlalchemy/pool.py index a94cd28f3..6cc05b287 100644 --- a/lib/sqlalchemy/pool.py +++ b/lib/sqlalchemy/pool.py @@ -97,7 +97,7 @@ class Pool(object): that connection, to call other functions which also ask the pool for a connection of the same arguments; those functions will act upon the same connection that the calling method is using. - Defaults to True. + Defaults to False. recycle If set to non -1, a number of seconds between connection |
