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

Method __init__

Lib/idlelib/config.py:43–48  ·  view source on GitHub ↗

cfgFile - string, fully specified configuration file name

(self, cfgFile, cfgDefaults=None)

Source from the content-addressed store, hash-verified

41 A ConfigParser specialised for idle configuration file handling
42 """
43 def __init__(self, cfgFile, cfgDefaults=None):
44 """
45 cfgFile - string, fully specified configuration file name
46 """
47 self.file = cfgFile # This is currently '' when testing.
48 ConfigParser.__init__(self, defaults=cfgDefaults, strict=False)
49
50 def Get(self, section, option, type=None, default=None, raw=False):
51 """

Callers

nothing calls this directly

Calls 1

__init__Method · 0.45

Tested by

no test coverage detected