Dmitrii Shinkevich

Results 1 issues of Dmitrii Shinkevich

https://github.com/urllib3/urllib3/blob/7d813bce9b1e39e45678209ccca771e825bc9472/src/urllib3/poolmanager.py#L339 That is according to the documentation I can disable redirection handling by something like the following: ```python http = urllib3.PoolManager( ... retries=urllib3.Retry(5, redirect=False)) ``` But actually `PoolManager.urlopen` method (used...