1*1031c584SApple OSS Distributions""" Module to abstract lazy evaluation of lldb.SBTarget 2*1031c584SApple OSS Distributions for kernel 3*1031c584SApple OSS Distributions""" 4*1031c584SApple OSS Distributionsfrom __future__ import absolute_import 5*1031c584SApple OSS Distributions 6*1031c584SApple OSS Distributionsfrom .caching import LazyTarget 7*1031c584SApple OSS Distributions 8*1031c584SApple OSS Distributions# backward compatibility, this has moved to caching 9*1031c584SApple OSS Distributions__all__ = [ LazyTarget.__name__ ] 10