Merge pull request #26 from cmr/master

better import of _imaging
This commit is contained in:
Alex Clark 2012-06-15 13:52:38 -07:00
commit 3f348ab1a0

View File

@ -51,9 +51,7 @@ try:
# the "open" function to identify files, but you cannot load # the "open" function to identify files, but you cannot load
# them. Note that other modules should not refer to _imaging # them. Note that other modules should not refer to _imaging
# directly; import Image and use the Image.core variable instead. # directly; import Image and use the Image.core variable instead.
import _imaging import _imaging as core
core = _imaging
del _imaging
except ImportError, v: except ImportError, v:
core = _imaging_not_installed() core = _imaging_not_installed()
if str(v)[:20] == "Module use of python" and warnings: if str(v)[:20] == "Module use of python" and warnings: