This commit is contained in:
Alex Clark 2013-05-03 20:22:54 -04:00
parent 9c38b8fc7d
commit 1eb842296c

View File

@ -31,14 +31,14 @@ Change::
to::
from PIL import Image
from PIL import Image
.. Note:: If your code imports _imaging, it will no longer work.
The preferred, future proof method of importing the private _imaging module is::
from PIL import Image
_imaging = Image.core
_imaging = Image.core
Why a fork?
-----------