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