From 75790fb5dad4bec6fc64c859dc902d2760d12f63 Mon Sep 17 00:00:00 2001 From: Ash Berlin-Taylor Date: Wed, 2 Sep 2020 15:00:06 +0100 Subject: [PATCH] Make `utils.functional.retry_over_time` appear in rendered docs Since this module has `__all__`, autodoc will (by default) only show docs for those members, meaning retry_over_time is not shown in the rendered docs. This function is used by the Redis result backend in Celery, and it has a doc comment so it should be "public". --- kombu/utils/functional.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kombu/utils/functional.py b/kombu/utils/functional.py index 30b047747..ccc916126 100644 --- a/kombu/utils/functional.py +++ b/kombu/utils/functional.py @@ -16,7 +16,7 @@ __all__ = ( 'LRUCache', 'memoize', 'lazy', 'maybe_evaluate', - 'is_list', 'maybe_list', 'dictfilter', + 'is_list', 'maybe_list', 'dictfilter', 'retry_over_time', ) KEYWORD_MARK = object()