You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
544716c (#2943) added TooManyRedirects and added it as aiohttp.TooManyRedirectsin the documentation.
However, it's not properly exposed publicly in __init__.py and can only be referenced as aiohttp.client_exceptions.TooManyRedirects.
Expected Behaviour
aiohttp.TooManyRedirects works, by reference to aiohttp.client_exceptions.TooManyRedirects
Actual Behaviour
AttributeError: module 'aiohttp' has no attribute 'TooManyRedirects
Reproduction Steps
import aiohttp and attempt to use aiohttp.TooManyRedirects
Environment
aiohttp 3.5.4
Also reproducible on latest master (81cc715)
The text was updated successfully, but these errors were encountered:
Description
544716c (#2943) added
TooManyRedirects
and added it asaiohttp.TooManyRedirects
in the documentation.However, it's not properly exposed publicly in
__init__.py
and can only be referenced asaiohttp.client_exceptions.TooManyRedirects
.Expected Behaviour
aiohttp.TooManyRedirects
works, by reference toaiohttp.client_exceptions.TooManyRedirects
Actual Behaviour
AttributeError: module 'aiohttp' has no attribute 'TooManyRedirects
Reproduction Steps
import aiohttp
and attempt to useaiohttp.TooManyRedirects
Environment
aiohttp 3.5.4
Also reproducible on latest master (81cc715)
The text was updated successfully, but these errors were encountered: