[Lldb-commits] [lldb] d265c8b - [lldb/Python] Remove unused imports (NFC)
Jonas Devlieghere via lldb-commits
lldb-commits at lists.llvm.org
Thu Jan 2 16:55:16 PST 2020
Author: Jonas Devlieghere
Date: 2020-01-02T16:55:09-08:00
New Revision: d265c8bf0d1e6eed3c97dfb96f98712e5adc8bf7
URL: https://github.com/llvm/llvm-project/commit/d265c8bf0d1e6eed3c97dfb96f98712e5adc8bf7
DIFF: https://github.com/llvm/llvm-project/commit/d265c8bf0d1e6eed3c97dfb96f98712e5adc8bf7.diff
LOG: [lldb/Python] Remove unused imports (NFC)
Added:
Modified:
lldb/packages/Python/lldbsuite/support/funcutils.py
Removed:
################################################################################
diff --git a/lldb/packages/Python/lldbsuite/support/funcutils.py b/lldb/packages/Python/lldbsuite/support/funcutils.py
index 2fa10097d43b..648d95d23d97 100644
--- a/lldb/packages/Python/lldbsuite/support/funcutils.py
+++ b/lldb/packages/Python/lldbsuite/support/funcutils.py
@@ -1,14 +1,5 @@
-from __future__ import print_function
-from __future__ import absolute_import
-
-# System modules
import inspect
-# Third-party modules
-
-# LLDB modules
-
-
def requires_self(func):
func_argc = len(inspect.getargspec(func).args)
if func_argc == 0 or (
More information about the lldb-commits
mailing list