web-platform-tests/wpt
在 GitHub 查看Creation of a handler which doesn't set a string as response content hangs the server
Open
#8,368 建立於 2017年11月20日
good first issueinfrapriority:backlogwptserve
倉庫指標
- Star
- (4,581 star)
- PR 合併指標
- (平均合併 6天 7小時) (30 天內合併 626 個 PR)
描述
Originally posted as https://github.com/w3c/wptserve/issues/105 by @whimboo on 28 Oct 2016, 12:22 UTC:
The following handler will cause the server to hang while delivering the page content:
def handler(request, response): response.content = 1 return ()This happens because a non-string value gets set as the content.