@@ -39,15 +39,15 @@ def html4(): # $routeHandler
3939def html5 (): # $routeHandler
4040 # note: flask.Flask.response_class is set to `flask.Response` by default.
4141 # it can be overridden, but we don't try to handle that right now.
42- resp = Flask .response_class ("<h1>hello</h1>" ) # $f-: HttpResponse $f-: mimetype=text/html $f-: responseBody="<h1>hello</h1>"
42+ resp = Flask .response_class ("<h1>hello</h1>" ) # $HttpResponse $mimetype=text/html $responseBody="<h1>hello</h1>"
4343 return resp
4444
4545
4646@app .route ("/html6" ) # $routeSetup="/html6"
4747def html6 (): # $routeHandler
4848 # note: app.response_class (flask.Flask.response_class) is set to `flask.Response` by default.
4949 # it can be overridden, but we don't try to handle that right now.
50- resp = app .response_class ("<h1>hello</h1>" ) # $f-: HttpResponse $f-: mimetype=text/html $f-: responseBody="<h1>hello</h1>"
50+ resp = app .response_class ("<h1>hello</h1>" ) # $HttpResponse $mimetype=text/html $responseBody="<h1>hello</h1>"
5151 return resp
5252
5353
@@ -127,15 +127,15 @@ def Response6(): # $routeHandler
127127def Flask_response_class (): # $routeHandler
128128 # note: flask.Flask.response_class is set to `flask.Response` by default.
129129 # it can be overridden, but we don't try to handle that right now.
130- resp = Flask .response_class ("<h1>hello</h1>" , mimetype = "text/plain" ) # $f-: HttpResponse $f-: mimetype=text/plain $f-: responseBody="<h1>hello</h1>"
130+ resp = Flask .response_class ("<h1>hello</h1>" , mimetype = "text/plain" ) # $HttpResponse $mimetype=text/plain $responseBody="<h1>hello</h1>"
131131 return resp
132132
133133
134134@app .route ("/content-type/app-response-class" ) # $routeSetup="/content-type/app-response-class"
135135def app_response_class (): # $routeHandler
136136 # note: app.response_class (flask.Flask.response_class) is set to `flask.Response` by default.
137137 # it can be overridden, but we don't try to handle that right now.
138- resp = app .response_class ("<h1>hello</h1>" , mimetype = "text/plain" ) # $f-: HttpResponse $f-: mimetype=text/plain $f-: responseBody="<h1>hello</h1>"
138+ resp = app .response_class ("<h1>hello</h1>" , mimetype = "text/plain" ) # $HttpResponse $mimetype=text/plain $responseBody="<h1>hello</h1>"
139139 return resp
140140
141141
0 commit comments