MCPcopy Create free account
hub / github.com/dabeaz/python-cookbook / __enter__

Method __enter__

src/13/making_a_stopwatch/stopwatch.py:28–30  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

26 return self._start is not None
27
28 def __enter__(self):
29 self.start()
30 return self
31
32 def __exit__(self, *args):
33 self.end()

Callers

nothing calls this directly

Calls 1

startMethod · 0.95

Tested by

no test coverage detected