MCPcopy Index your code
hub / github.com/python/cpython / _statstream

Method _statstream

Lib/logging/handlers.py:493–498  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

491 self._statstream()
492
493 def _statstream(self):
494 if self.stream is None:
495 return
496 sres = os.fstat(self.stream.fileno())
497 self.dev = sres.st_dev
498 self.ino = sres.st_ino
499
500 def reopenIfNeeded(self):
501 """

Callers 2

__init__Method · 0.95
reopenIfNeededMethod · 0.95

Calls 1

filenoMethod · 0.45

Tested by

no test coverage detected