15 lines
322 B
Python
15 lines
322 B
Python
from io import BytesIO
|
|
|
|
from app import app
|
|
from flask import make_response
|
|
|
|
|
|
@app.route("/error-assert-bytearray")
|
|
def error_assert_bytearray():
|
|
result = BytesIO()
|
|
result.write(b"\xff")
|
|
data = result.getvalue()
|
|
resp = make_response(data)
|
|
resp.content_type = "application/octet-stream"
|
|
return resp
|