summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/pool.py
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2011-08-24 10:58:06 -0400
committerMike Bayer <mike_mp@zzzcomputing.com>2011-08-24 10:58:06 -0400
commitb80d54e7b24ef30498c0ab8b3951781b33a0fcd9 (patch)
treebf48f517b0ac466e7f9c6e36815107573527ca2f /lib/sqlalchemy/pool.py
parent9b33b23a13446680c03974b497fc8436fe6c81e9 (diff)
downloadsqlalchemy-b80d54e7b24ef30498c0ab8b3951781b33a0fcd9.tar.gz
document pool ping recipe
Diffstat (limited to 'lib/sqlalchemy/pool.py')
-rw-r--r--lib/sqlalchemy/pool.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/lib/sqlalchemy/pool.py b/lib/sqlalchemy/pool.py
index b7011366e..dd945e074 100644
--- a/lib/sqlalchemy/pool.py
+++ b/lib/sqlalchemy/pool.py
@@ -189,9 +189,10 @@ class Pool(log.Identified):
"""Dispose of this pool.
This method leaves the possibility of checked-out connections
- remaining open, It is advised to not reuse the pool once dispose()
- is called, and to instead use a new pool constructed by the
- recreate() method.
+ remaining open, as it only affects connections that are
+ idle in the pool.
+
+ See also the :meth:`Pool.recreate` method.
"""