�
Hq�Qc @ s� d Z d d l Z e Z e � Z y e e j i i d d � Wn e k
rZ d � Z n Xe Z d e f d � � YZ
d d d d d � Z d d d d
d d d
d d d d d d d g Z d � Z
d � Z d S( sU
demandimport - automatic demandloading of modules
To enable this module, do:
import demandimport; demandimport.enable()
Imports of the following forms will be demand-loaded:
import a, b.c
import a.b as c
from a import b,c # a will be loaded immediately
These imports will not be delayed:
from a import *
b = __import__(a)
i����Nc C s t | | | | � S( s' |