コード例 #1
0
def test_make_error_response():
    d = BytesIO()
    s = http.make_error_response("foo")
    language.serve(s, d, {})
コード例 #2
0
def test_make_error_response():
    d = cStringIO.StringIO()
    s = http.make_error_response("foo")
    language.serve(s, d, {})
コード例 #3
0
def test_make_error_response():
    d = io.BytesIO()
    s = http.make_error_response("foo")
    language.serve(s, d, {})
コード例 #4
0
def test_make_error_response():
    d = cStringIO.StringIO()
    s = http.make_error_response("foo")
    language.serve(s, d, {})