Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/apache/httpd
/ parse
Method
parse
test/pyhttpd/ws_util.py:132–137 ·
view source on GitHub ↗
(cls, data: bytes)
Source
from the content-addressed store, hash-verified
130
131
@classmethod
132
def
parse(cls, data: bytes):
133
frames = []
134
reader = WsFrameReader(data=data)
135
while
not reader.eof():
136
frames.append(reader.next_frame())
137
return
frames
Callers
2
test_800_websockets.py
File · 0.80
ws_run
Function · 0.80
Calls
3
eof
Method · 0.95
next_frame
Method · 0.95
WsFrameReader
Class · 0.85
Tested by
1
ws_run
Function · 0.64