Coverage for /pythoncovmergedfiles/medio/medio/usr/local/lib/python3.11/site-packages/retry/__init__.py: 86%
Shortcuts on this page
r m x toggle line displays
j k next/prev highlighted chunk
0 (zero) top of page
1 (one) first highlighted chunk
Shortcuts on this page
r m x toggle line displays
j k next/prev highlighted chunk
0 (zero) top of page
1 (one) first highlighted chunk
1__all__ = ['retry', 'retry_call']
3import logging
5from .api import retry, retry_call
6from .compat import NullHandler
9# Set default logging handler to avoid "No handler found" warnings.
10log = logging.getLogger(__name__)
11log.addHandler(NullHandler())