diff options
author | Andrés Delfino <34587441+andresdelfino@users.noreply.github.com> | 2018-04-21 12:17:26 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2018-04-21 12:17:26 (GMT) |
commit | b81ca28b378c8b29204a37f8bd433a3379f53f7d (patch) | |
tree | 1139c5fc0e468a45ed7583ad8b8b2e9104183690 /Doc/tutorial | |
parent | 441d945eb33f8dc130b268ebfa11315b98a2433c (diff) | |
download | cpython-b81ca28b378c8b29204a37f8bd433a3379f53f7d.zip cpython-b81ca28b378c8b29204a37f8bd433a3379f53f7d.tar.gz cpython-b81ca28b378c8b29204a37f8bd433a3379f53f7d.tar.bz2 |
bpo-33297: Mention Pillow to work with more image formats. (#6505)
Also update PIL doc references to Pillow.
Diffstat (limited to 'Doc/tutorial')
-rw-r--r-- | Doc/tutorial/modules.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/tutorial/modules.rst b/Doc/tutorial/modules.rst index 584d4fd..3f68932 100644 --- a/Doc/tutorial/modules.rst +++ b/Doc/tutorial/modules.rst @@ -382,7 +382,7 @@ module names". For example, the module name :mod:`A.B` designates a submodule named ``B`` in a package named ``A``. Just like the use of modules saves the authors of different modules from having to worry about each other's global variable names, the use of dotted module names saves the authors of multi-module -packages like NumPy or the Python Imaging Library from having to worry about +packages like NumPy or Pillow from having to worry about each other's module names. Suppose you want to design a collection of modules (a "package") for the uniform |