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