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