From 031e81eef6bcf856e886756a687d57dc55a6c039 Mon Sep 17 00:00:00 2001 From: Alex Clark Date: Fri, 3 May 2013 19:57:45 -0400 Subject: [PATCH] Wording --- README.rst | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/README.rst b/README.rst index 287413c52..76845b21e 100644 --- a/README.rst +++ b/README.rst @@ -26,9 +26,7 @@ PIL is not setuptools compatible. Please see http://mail.python.org/pipermail/im Porting ------- -Pillow is a functional dropin for the Python Imaging Library. To run -under Pillow, existing code needs to be modified to import the Imaging -modules from the PIL namespace instead of the global namespace. +Pillow is a functional drop-in for the Python Imaging Library. To run under Pillow, existing code needs to be modified to import the Imaging modules from the PIL namespace instead of the global namespace. Change:: @@ -38,9 +36,7 @@ to:: from PIL import Image -Note that if your code imports _imaging, that will also be hosted in -the PIL namespace. The preferred, future proof method of importing the -private _imaging module is:: +Note that if your code imports _imaging, that will also be hosted in the PIL namespace. The preferred, future proof method of importing the private _imaging module is:: from PIL import Image _imaging = Image.core