it's a bit common in old libraries.
like in flask
def create_environ(*args: t.Any, **kwargs: t.Any) -> WSGIEnvironment:
this tells nothing, but
builder = EnvironBuilder(*args, **kwargs)
try:
return builder.get_environ()
finally:
builder.close()
The body shows all the signatures.
it's a bit common in old libraries.
like in flask
this tells nothing, but
The body shows all the signatures.