From 112f8a41808fbac01e8461f8d91ec63b1796daf4 Mon Sep 17 00:00:00 2001 From: Lars Wirzenius Date: Sun, 26 Jul 2020 09:46:49 +0300 Subject: drop: dead code from ewww.py --- ewww.py | 17 ----------------- 1 file changed, 17 deletions(-) diff --git a/ewww.py b/ewww.py index 8a6e453..9282d64 100644 --- a/ewww.py +++ b/ewww.py @@ -16,23 +16,6 @@ import urllib.parse import yaml -# Run a subprocess, capture its output and exit code in context. -def _run(ctx, argv): - p = subprocess.Popen(argv, stdout=subprocess.PIPE, stderr=subprocess.PIPE) - stdout, stderr = p.communicate("") - ctx["argv"] = argv - ctx["stdout"] = stdout.decode("utf-8") - ctx["stderr"] = stderr.decode("utf-8") - ctx["exit"] = p.returncode - - -# Check that latest call of _run ended with an specific exit code. -def _run_exit(ctx, expected): - if ctx["exit"] != expected: - print("ctx:", ctx.as_dict()) - assert_eq(ctx["exit"], expected) - - # Name of Rust binary, debug-build. def _binary(name): return os.path.abspath(os.path.join(srcdir, "target", "debug", name)) -- cgit v1.2.1