Why "rv" in Flask testing tutorial? [closed] Why "rv" in Flask testing tutorial? [closed] flask flask

Why "rv" in Flask testing tutorial? [closed]


It says just below that code snippet in your link you provided:

By using self.app.get we can send an HTTP GET request to the application with the given path. The return value will be a response_class object.

So rv is just short for return value.