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

Method __init__

Lib/pstats.py:673–679  ·  view source on GitHub ↗
(self, profile=None)

Source from the content-addressed store, hash-verified

671
672 class ProfileBrowser(cmd.Cmd):
673 def __init__(self, profile=None):
674 cmd.Cmd.__init__(self)
675 self.prompt = "% "
676 self.stats = None
677 self.stream = sys.stdout
678 if profile is not None:
679 self.do_read(profile)
680
681 def generic(self, fn, line):
682 args = line.split()

Callers

nothing calls this directly

Calls 2

do_readMethod · 0.95
__init__Method · 0.45

Tested by

no test coverage detected