summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAsh Berlin-Taylor <ash_github@firemirror.com>2020-09-03 10:22:20 +0100
committerGitHub <noreply@github.com>2020-09-03 11:22:20 +0200
commit10887dc88e62fe2ba51ecf09c96e7036aee93842 (patch)
tree37eea9d4cff4486e2bc4800cf4b87711d89c125f
parent2becce3e03df5790391cc97c47e10fc5e39656b3 (diff)
downloadkombu-10887dc88e62fe2ba51ecf09c96e7036aee93842.tar.gz
Make `utils.functional.retry_over_time` appear in rendered docs (#1245)
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".
-rw-r--r--kombu/utils/functional.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/kombu/utils/functional.py b/kombu/utils/functional.py
index 30b04774..ccc91612 100644
--- a/kombu/utils/functional.py
+++ b/kombu/utils/functional.py
@@ -16,7 +16,7 @@ from .encoding import safe_repr as _safe_repr
__all__ = (
'LRUCache', 'memoize', 'lazy', 'maybe_evaluate',
- 'is_list', 'maybe_list', 'dictfilter',
+ 'is_list', 'maybe_list', 'dictfilter', 'retry_over_time',
)
KEYWORD_MARK = object()