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
{{ message }}
This repository has been archived by the owner on Apr 26, 2024. It is now read-only.
twisted's URI object is defined such that its host is a bytes
twisted.web.client.Agent feeds the uri into the endpointForURI method of an EndpointFactory
SpiderEndpointFactory feeds uri.host into SpiderEndpoint's constructor
SpinderEndpoint.connect feeds it it into reactor.resolve, and thence to netaddr.ip.IPAddress.
reactor.resolve returns its input if the input is an IP address
netaddr.ip.IPAddress's constructor explodes horribly if given a bytes instead of a str.
It's a bit of a catalogue of fail, but the upshot seems to be that only previews of IP literal hostnames are affected, so this is probably not a hard blocker for 0.34.
The text was updated successfully, but these errors were encountered: