tests/config.py
author Radek Brich <radek.brich@devl.cz>
Mon, 09 Dec 2013 13:57:31 +0100
changeset 92 8816c917979c
parent 49 08e4dfe1b0cb
permissions -rw-r--r--
Fix.

class Config(dict):
    def __init__(self, fname):
        with open(fname) as f:
            data = f.read()
        exec(data, dict(), self)