Sign in
chromium
/
external
/
github.com
/
Pylons
/
waitress
/
refs/heads/refactor-cli-with-fixes
/
.
/
tests
/
fixtureapps
/
toolarge.py
blob: a0f36d2cc4bf31b25e3203eb77115b50652830a1 [
file
] [
log
] [
blame
] [
edit
]
def
app
(
environ
,
start_response
):
# pragma: no cover
body
=
b
"abcdef"
cl
=
len
(
body
)
start_response
(
"200 OK"
,
[(
"Content-Length"
,
str
(
cl
)),
(
"Content-Type"
,
"text/plain"
)]
)
return
[
body
]