Package restkit :: Package pool :: Module simple
[hide private]
[frames] | no frames]

Source Code for Module restkit.pool.simple

 1  # -*- coding: utf-8 - 
 2  # 
 3  # This file is part of restkit released under the MIT license.  
 4  # See the NOTICE for more information. 
 5   
 6  import warnings 
 7  warnings.warn("The Simplepool module is deprecated.  Please use the " 
 8          "restkit.conn.TConnectionManager class instead.", 
 9          DeprecationWarning, stacklevel=2) 
10   
11   
12   
13  from restkit.conn import TConnectionManager 
14   
15  SimplePool = TConnectionManager 
16