Part of my work involves documenting and fixing 30X redirect chains for websites. For the longest time I've just been using Python, it allows me to get the "history" of a request as it makes its jump from URL to URL.
Inspired by Python's capability, I've modified the Response type within the std/httpclient module to include a "history" property. This contains a sequence of tuples (url: string, code: HttpCode). When the request procedure is called, this property is updated with each redirect.
Can I add this feature to the stdlib?