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 the length of time (in seconds) after which idle sessions in the pool are
terminated. Note that termination only occurs when another session is terminated. Note that termination only occurs when another session is
released back to the pool. The default value of 0 means that no idle 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 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 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`. :data:`cx_Oracle.SPOOL_ATTRVAL_TIMEDWAIT`.
The maxLifetimeSession parameter is expected to be an integer, if The maxLifetimeSession parameter is expected to be an integer, if
specified, and sets the length of time (in seconds) a session may remain specified, and sets the maximum length of time (in seconds) a session may
in the pool. Sessions in the pool are terminated after they have been in exist in the pool. Sessions in the pool are terminated after they have
the pool for the specified period of time. Note that termination only been in the pool for the specified period of time. Note that termination
occurs when another session is released back to the pool. The default value only occurs when another session is released back to the pool. The default
is 0 which means that there is no maximum length of time that a session may value is 0 which means that there is no maximum length of time that a
exist in the pool. session may exist in the pool.
.. note:: .. note::