diff options
Diffstat (limited to 'lldb/packages/Python/lldbsuite/support/funcutils.py')
-rw-r--r-- | lldb/packages/Python/lldbsuite/support/funcutils.py | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/lldb/packages/Python/lldbsuite/support/funcutils.py b/lldb/packages/Python/lldbsuite/support/funcutils.py index 2fa10097d43..648d95d23d9 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 ( |