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

Method __init__

Lib/idlelib/pyshell.py:410–417  ·  view source on GitHub ↗
(self, tkconsole)

Source from the content-addressed store, hash-verified

408class ModifiedInterpreter(InteractiveInterpreter):
409
410 def __init__(self, tkconsole):
411 self.tkconsole = tkconsole
412 locals = sys.modules['__main__'].__dict__
413 InteractiveInterpreter.__init__(self, locals=locals)
414 self.restarting = False
415 self.subprocess_arglist = None
416 self.port = PORT
417 self.original_compiler_flags = self.compile.compiler.flags
418
419 _afterid = None
420 rpcclt = None

Callers

nothing calls this directly

Calls 1

__init__Method · 0.45

Tested by

no test coverage detected