def myfunc(somearg)
req = request.Request(...)
with request.urlopen(req) as res:
...
# should I call res.close() here before going into recursion?
myfunc(somearg+1)
>No. The `with` statement automatically closes the response.
Gemma 31b.. not like that..