xref: /xnu-10002.1.13/tools/lldbmacros/core/lazytarget.py (revision 1031c584a5e37aff177559b9f69dbd3c8c3fd30a)
1""" Module to abstract lazy evaluation of lldb.SBTarget
2    for kernel
3"""
4from __future__ import absolute_import
5
6from .caching import LazyTarget
7
8# backward compatibility, this has moved to caching
9__all__ = [ LazyTarget.__name__ ]
10