MCPcopy
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_multipartFunction · 0.45
get_environMethod · 0.45
_first_iterationMethod · 0.45
parseMethod · 0.45

Calls

no outgoing calls

Tested by 2

stream_encode_multipartFunction · 0.36
get_environMethod · 0.36