mirror of
https://github.com/clearlinux/uwsgi.git
synced 2026-06-16 02:15:48 +00:00
10 lines
193 B
Python
10 lines
193 B
Python
import array
|
|
|
|
|
|
def application(e, sr):
|
|
sr('200 OK', [('Content-Type', 'text/html')])
|
|
a = array.array('b', [54, 55, 56, 57])
|
|
yield a
|
|
yield bytearray(b'abcdef')
|
|
yield b'ciao'
|