@@ -174,15 +174,15 @@ def __init__(self, dbapi, maxconnections, *args, **kwargs):
174174 # not to this class which should be threadsafe in any case.
175175
176176 def _unthreadsafe_get_connection (self ):
177- """" Get a connection from the pool."""
177+ """Get a connection from the pool."""
178178 return PooledDBConnection (self , self ._queue .get ())
179179
180180 def _unthreadsafe_add_connection (self , con ):
181- """" Add a connection to the pool."""
181+ """Add a connection to the pool."""
182182 self ._queue .put (con )
183183
184184 def _unthreadsafe_return_connection (self , con ):
185- """" Return a connection to the pool.
185+ """Return a connection to the pool.
186186
187187 In this case, the connections need to be put
188188 back into the queue after they have been used.
@@ -198,7 +198,7 @@ def _unthreadsafe_return_connection(self, con):
198198 # This may lead to problems if you use transactions.
199199
200200 def _threadsafe_get_connection (self ):
201- """" Get a connection from the pool."""
201+ """Get a connection from the pool."""
202202 self ._lock .acquire ()
203203 try :
204204 next = self ._nextConnection
@@ -212,7 +212,7 @@ def _threadsafe_get_connection(self):
212212 self ._lock .release ()
213213
214214 def _threadsafe_add_connection (self , con ):
215- """" Add a connection to the pool."""
215+ """Add a connection to the pool."""
216216 self ._connections .append (con )
217217
218218 def _threadsafe_return_connection (self , con ):
0 commit comments