tests/config.py
author Radek Brich <radek.brich@devl.cz>
Wed, 26 Sep 2012 16:21:59 +0200
changeset 43 a921669e913a
parent 37 5b0eb4b11940
child 49 08e4dfe1b0cb
permissions -rw-r--r--
PgManager: rewrite RowDict class.

import sys

sys.path.insert(0, '..')


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