Code
Hub
Workspaces
Connect
Indexed graphs
Engine
MCP
copy
hub
/
github.com/pallets/werkzeug
/ seek
Method
seek
src/werkzeug/wsgi.py:333–335 ·
view source on GitHub ↗
(self, *args: t.Any)
Source
from the content-addressed store, hash-verified
331
return
False
332
333
def
seek(self, *args: t.Any) -> None:
334
if
hasattr(self.file,
"seek"
):
335
self.file.seek(*args)
336
337
def
tell(self) -> int | None:
338
if
hasattr(self.file,
"tell"
):
Callers
4
stream_encode_multipart
Function · 0.45
get_environ
Method · 0.45
_first_iteration
Method · 0.45
parse
Method · 0.45
Calls
no outgoing calls
Tested by
2
stream_encode_multipart
Function · 0.36
get_environ
Method · 0.36