diff options
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/test_results.py')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/test_results.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/test_results.py b/lldb/packages/Python/lldbsuite/test/test_results.py index 68f74d64036..6f9cefe31d6 100644 --- a/lldb/packages/Python/lldbsuite/test/test_results.py +++ b/lldb/packages/Python/lldbsuite/test/test_results.py @@ -9,9 +9,9 @@ within the LLDB test suite. """ from __future__ import print_function +from __future__ import absolute_import - - +# System modules import argparse import inspect import os @@ -23,9 +23,11 @@ import time import traceback import xml.sax.saxutils +# Third-party modules import six from six.moves import cPickle +# LLDB modules class EventBuilder(object): """Helper class to build test result event dictionaries.""" |