Adds autodoc for kombu.pools

This commit is contained in:
Ask Solem 2011-07-25 15:39:42 +01:00
parent 59fb3a649c
commit 914f2665c5
4 changed files with 13 additions and 1 deletions

View File

@ -30,6 +30,7 @@
kombu.transport.virtual.scheduling
kombu.serialization
kombu.compression
kombu.pools
kombu.abstract
kombu.syn
kombu.utils

View File

@ -0,0 +1,11 @@
==========================================================
General Pools - kombu.pools
==========================================================
.. contents::
:local:
.. currentmodule:: kombu.pools
.. automodule:: kombu.pools
:members:
:undoc-members:

View File

@ -174,6 +174,7 @@ class test_Channel(unittest.TestCase):
durable=False, auto_delete=True)
def test_exchange_delete(self, ex="test_exchange_delete"):
class PurgeChannel(virtual.Channel):
purged = []

View File

@ -272,7 +272,6 @@ class Channel(virtual.Channel):
queue or ""]))
self._avail_client.delete(queue)
def _has_queue(self, queue, **kwargs):
return self._avail_client.exists(queue)