server/pool.py
branchstable
changeset 5824 de9b7e88660e
parent 5424 8ecbcbff9777
child 5976 00b1b6b906cf
equal deleted inserted replaced
5817:e4207221f3f5 5824:de9b7e88660e
    17 # with CubicWeb.  If not, see <http://www.gnu.org/licenses/>.
    17 # with CubicWeb.  If not, see <http://www.gnu.org/licenses/>.
    18 """CubicWeb server connections pool : the repository has a limited number of
    18 """CubicWeb server connections pool : the repository has a limited number of
    19 connections pools, each of them dealing with a set of connections on each source
    19 connections pools, each of them dealing with a set of connections on each source
    20 used by the repository. A connections pools (`ConnectionsPool`) is an
    20 used by the repository. A connections pools (`ConnectionsPool`) is an
    21 abstraction for a group of connection to each source.
    21 abstraction for a group of connection to each source.
       
    22 """
    22 
    23 
    23 
       
    24 """
       
    25 __docformat__ = "restructuredtext en"
    24 __docformat__ = "restructuredtext en"
    26 
    25 
    27 import sys
    26 import sys
    28 
    27 
    29 class ConnectionsPool(object):
    28 class ConnectionsPool(object):