This repository was archived by the owner on Mar 23, 2023. It is now read-only.

Description
The following code fails with the error message: AttributeError: '*Response' object has no attribute 'Body'
from __go__.os import Stdout as stdout
from __go__.net.http import DefaultClient as client
rsp, err = client.Get("http://www.google.com")
if err is not None:
raise Exception(err.Error())
_, err = Copy(stdout, rsp.Body)
if err is not None:
raise Exception(err.Error())