Hello, I was investigating why a https request that i was doing was using proxy even though i added the host to bypass_hosts. I found out the the method HTTPConnectionWithTimeout.connect does the following line 1155 ` if self.proxy_info and self.proxy_info.isgood() and self.proxy_info.applies_to(self.host):` But the method HTTPSConnectionWithTimeout.connect does the following line 1287 ` if self.proxy_info and self.proxy_info.isgood():` I think that the https connections are missing the **.applies_to**