Code
Hub
Workspaces
Connect
Indexed graphs
Engine
MCP
copy
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_multipart
Function · 0.45
get_environ
Method · 0.45
_first_iteration
Method · 0.45
Calls
no outgoing calls
Tested by
2
stream_encode_multipart
Function · 0.36
get_environ
Method · 0.36