Read a configuration file.
(path)
| 343 | |
| 344 | |
| 345 | def read_config_file(path): |
| 346 | """ Read a configuration file. """ |
| 347 | # Parse the contents. |
| 348 | return eval(read_file(path), {'__builtins__': None}, None) |
| 349 | |
| 350 | |
| 351 | def write_config_file(path, contents): |
no test coverage detected