tests/config.py
author Radek Brich <radek.brich@devl.cz>
Mon, 04 Mar 2013 15:39:34 +0100
changeset 70 77e65040711c
parent 49 08e4dfe1b0cb
permissions -rw-r--r--
Update docs.

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