tests/config.py
author Radek Brich <radek.brich@devl.cz>
Tue, 24 Sep 2013 13:34:17 +0200
changeset 88 b8b2d28a7f35
parent 49 08e4dfe1b0cb
permissions -rw-r--r--
Update analyzeall tool: Allow combination of vacuum and reindex.

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