MCPcopy
hub / github.com/pallets/werkzeug / tell

Method tell

src/werkzeug/wsgi.py:337–340  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

335 self.file.seek(*args)
336
337 def tell(self) -> int | None:
338 if hasattr(self.file, "tell"):
339 return self.file.tell()
340 return None
341
342 def __iter__(self) -> FileWrapper:
343 return self

Callers 3

stream_encode_multipartFunction · 0.45
get_environMethod · 0.45
_first_iterationMethod · 0.45

Calls

no outgoing calls

Tested by 2

stream_encode_multipartFunction · 0.36
get_environMethod · 0.36