diff options
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/lldbbench.py')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/lldbbench.py | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/lldbbench.py b/lldb/packages/Python/lldbsuite/test/lldbbench.py index a8cbffb8cd7..6b568f87466 100644 --- a/lldb/packages/Python/lldbsuite/test/lldbbench.py +++ b/lldb/packages/Python/lldbsuite/test/lldbbench.py @@ -1,6 +1,12 @@ +from __future__ import absolute_import + +# System modules import time -#import numpy -from lldbtest import * + +# Third-party modules + +# LLDB modules +from .lldbtest import * class Stopwatch(object): """Stopwatch provides a simple utility to start/stop your stopwatch multiple |