diff options
author | Daniele Varrazzo <daniele.varrazzo@gmail.com> | 2010-02-25 23:00:52 +0000 |
---|---|---|
committer | Daniele Varrazzo <daniele.varrazzo@gmail.com> | 2010-02-26 00:46:23 +0000 |
commit | 4412826556ea5af86ca2be0cf03a691f4e7cdadb (patch) | |
tree | 5f46aa44ecb76e980287947ea56488bd1b243113 /lib | |
parent | 3636bc4201eaa13939da1e6928e61ec16f8271a8 (diff) | |
download | psycopg2-4412826556ea5af86ca2be0cf03a691f4e7cdadb.tar.gz |
Added documentation for the 'pool' module.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/pool.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/pool.py b/lib/pool.py index 7ebeff3..030cb68 100644 --- a/lib/pool.py +++ b/lib/pool.py @@ -197,9 +197,9 @@ class PersistentConnectionPool(AbstractConnectionPool): """A pool that assigns persistent connections to different threads. Note that this connection pool generates by itself the required keys - using the current thread id. This means that untill a thread put away + using the current thread id. This means that until a thread puts away a connection it will always get the same connection object by successive - .getconn() calls. This also means that a thread can't use more than one + :meth:`!getconn` calls. This also means that a thread can't use more than one single connection from the pool. """ |