From 88c643b6fec27eec436c8d138fee6346e92337d6 Mon Sep 17 00:00:00 2001 From: Dimitry Andric Date: Tue, 20 Aug 2019 18:01:57 +0000 Subject: Remove upstream files and directories from vendor/lldb/dist that we do not use. This saves on repository space, and reduces the number of tree conflicts when merging. --- packages/Python/lldbsuite/support/seven.py | 25 ------------------------- 1 file changed, 25 deletions(-) delete mode 100644 packages/Python/lldbsuite/support/seven.py (limited to 'packages/Python/lldbsuite/support/seven.py') diff --git a/packages/Python/lldbsuite/support/seven.py b/packages/Python/lldbsuite/support/seven.py deleted file mode 100644 index e04f48308b7d..000000000000 --- a/packages/Python/lldbsuite/support/seven.py +++ /dev/null @@ -1,25 +0,0 @@ -import six - -if six.PY2: - import commands - get_command_output = commands.getoutput - get_command_status_output = commands.getstatusoutput - - cmp_ = cmp -else: - def get_command_status_output(command): - try: - import subprocess - return ( - 0, - subprocess.check_output( - command, - shell=True, - universal_newlines=True)) - except subprocess.CalledProcessError as e: - return (e.returncode, e.output) - - def get_command_output(command): - return get_command_status_output(command)[1] - - cmp_ = lambda x, y: (x > y) - (x < y) -- cgit v1.2.3