tests/config.py
author Radek Brich <radek.brich@devl.cz>
Wed, 26 Sep 2012 16:20:26 +0200
changeset 42 9e3775460792
parent 37 5b0eb4b11940
child 49 08e4dfe1b0cb
permissions -rw-r--r--
PgManager: update comments.

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)