From b074743821a729933a31bb5434ec807352743740 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Karel=20Ko=C4=8D=C3=AD?= Date: Fri, 24 Jul 2015 17:30:17 +0200 Subject: Remove unused function from utils build_conf_map is not used anywhere. And plan is to change files with which it works. So it doesn't have any sense to keeping it there or even rewriting it. --- scripts/utils.py | 26 -------------------------- 1 file changed, 26 deletions(-) (limited to 'scripts/utils.py') diff --git a/scripts/utils.py b/scripts/utils.py index 522a68d..d138279 100644 --- a/scripts/utils.py +++ b/scripts/utils.py @@ -28,32 +28,6 @@ def build_symbol_map(): smap[int(w[0])] = w[1] -def build_conf_map(): - """Generates global variable cmap from config_map_file and config_solved_file. - cmap is dictionary containing list ([configuration], bool solved) - cmap is rebuild every time this function is called. - """ - global cmap - cmap = dict() - if os.path.isfile(sf(conf.config_map_file)): - with open(sf(conf.config_map_file)) as f: - for ln in f: - w = ln.rstrip().split(sep=':') - cf = list() - for vr in w[1].split(sep=" "): - if vf[0] == '-': - cf.append(-1 * int(vf[1:])) - cf.append(int(vf)) - cmap[w[0]] = [w[1], False] - - if os.path.isfile(sf(conf.config_solved_file)): - with open(sf(conf.config_solved_file)) as f: - for ln in f: - try: - cmap[ln.rstrip()][1] = True - except KeyError: - pass - def callsubprocess(process_name, process, show_output = True, return_output = False, env=os.environ, allowed_exit_codes = [0]): sprc = subprocess.Popen(process, stdout = subprocess.PIPE, env = env) -- cgit v1.2.3