Clarify documentation a bit.

This commit is contained in:
Anthony Tuininga 2018-05-18 14:35:30 -06:00
parent 7b2195c37c
commit 99866aed94

View File

@ -220,7 +220,7 @@ Module Interface
the length of time (in seconds) after which idle sessions in the pool are
terminated. Note that termination only occurs when another session is
released back to the pool. The default value of 0 means that no idle
are terminated.
sessions are terminated.
The waitTimeout parameter is expected to be an integer, if specified, and
sets the length of time (in milliseconds) that the caller should wait for
@ -229,12 +229,12 @@ Module Interface
:data:`cx_Oracle.SPOOL_ATTRVAL_TIMEDWAIT`.
The maxLifetimeSession parameter is expected to be an integer, if
specified, and sets the length of time (in seconds) a session may remain
in the pool. Sessions in the pool are terminated after they have been in
the pool for the specified period of time. Note that termination only
occurs when another session is released back to the pool. The default value
is 0 which means that there is no maximum length of time that a session may
exist in the pool.
specified, and sets the maximum length of time (in seconds) a session may
exist in the pool. Sessions in the pool are terminated after they have
been in the pool for the specified period of time. Note that termination
only occurs when another session is released back to the pool. The default
value is 0 which means that there is no maximum length of time that a
session may exist in the pool.
.. note::