MCPcopy Create free account
hub / github.com/Apress/python-for-matlab-development / read

Function read

code/matlab_py/bridge_ini.py:31–34  ·  view source on GitHub ↗
(File)

Source from the content-addressed store, hash-verified

29# }}}
30import configparser
31def read(File):
32 D = configparser.ConfigParser()
33 D.read(File)
34 return D
35def keys(D):
36 return list(D.keys())
37def get(D, key):

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected