diff options
Diffstat (limited to 'debuginfo-tests/dexter/dex/utils/__init__.py')
-rw-r--r-- | debuginfo-tests/dexter/dex/utils/__init__.py | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/debuginfo-tests/dexter/dex/utils/__init__.py b/debuginfo-tests/dexter/dex/utils/__init__.py new file mode 100644 index 00000000000..ac08139d568 --- /dev/null +++ b/debuginfo-tests/dexter/dex/utils/__init__.py @@ -0,0 +1,21 @@ +# DExTer : Debugging Experience Tester +# ~~~~~~ ~ ~~ ~ ~~ +# +# Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. +# See https://llvm.org/LICENSE.txt for license information. +# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception +"""Generic non-dexter-specific utility classes and functions.""" + +import os + +from dex.utils.Environment import is_native_windows, has_pywin32 +from dex.utils.PrettyOutputBase import PreserveAutoColors +from dex.utils.RootDirectory import get_root_directory +from dex.utils.Timer import Timer +from dex.utils.Warning import warn +from dex.utils.WorkingDirectory import WorkingDirectory + +if is_native_windows(): + from dex.utils.windows.PrettyOutput import PrettyOutput +else: + from dex.utils.posix.PrettyOutput import PrettyOutput |