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

Method LoadCfgFiles

Lib/idlelib/config.py:757–761  ·  view source on GitHub ↗

Load all configuration files.

(self)

Source from the content-addressed store, hash-verified

755 return (family, size, 'bold' if bold else 'normal')
756
757 def LoadCfgFiles(self):
758 "Load all configuration files."
759 for key in self.defaultCfg:
760 self.defaultCfg[key].Load()
761 self.userCfg[key].Load() #same keys
762
763 def SaveUserCfgFiles(self):
764 "Write all loaded user configuration files to disk."

Callers 2

__init__Method · 0.95
test_load_cfg_filesMethod · 0.80

Calls 1

LoadMethod · 0.80

Tested by 1

test_load_cfg_filesMethod · 0.64