Code
Hub
Workspaces
Following
Digest
Agents
Trending
Connect
MCP
copy
Index your code
hub
/
github.com/RustPython/RustPython
/ __repr__
Method
__repr__
Lib/gzip.py:263–265 ·
view source on GitHub ↗
(self)
Source
from the content-addressed store, hash-verified
261
return
self._buffer.raw._last_mtime
262
263
def
__repr__(self):
264
s = repr(self.fileobj)
265
return
'<gzip '
+ s[1:-1] +
' '
+ hex(id(self)) +
'>'
266
267
def
_init_write(self, filename):
268
self.name = filename
Callers
nothing calls this directly
Calls
3
repr
Function · 0.85
hex
Function · 0.85
id
Function · 0.85
Tested by
no test coverage detected