summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/engine
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2010-09-08 15:43:24 -0400
committerMike Bayer <mike_mp@zzzcomputing.com>2010-09-08 15:43:24 -0400
commita191ded054899fe2d827b4341529f1a5ec1d711e (patch)
tree9ce7132713207ae2088cf2bd149bd3c9fcbda39e /lib/sqlalchemy/engine
parent9f16ec981c0b4b26f319859c436d6d30c0526b89 (diff)
downloadsqlalchemy-a191ded054899fe2d827b4341529f1a5ec1d711e.tar.gz
edits
Diffstat (limited to 'lib/sqlalchemy/engine')
-rw-r--r--lib/sqlalchemy/engine/base.py5
1 files changed, 1 insertions, 4 deletions
diff --git a/lib/sqlalchemy/engine/base.py b/lib/sqlalchemy/engine/base.py
index 63d76efa0..79cadaea9 100644
--- a/lib/sqlalchemy/engine/base.py
+++ b/lib/sqlalchemy/engine/base.py
@@ -812,10 +812,7 @@ class Connection(Connectable):
upon the connection, including its expiration or timeout state. For the
connection pool to properly manage connections, connections should be
returned to the connection pool (i.e. ``connection.close()``) whenever the
- connection is not in use. If your application has a need for management
- of multiple connections or is otherwise long running (this includes all
- web applications, threaded or not), don't hold a single connection open at
- the module level.
+ connection is not in use.
.. index::
single: thread safety; Connection