File tree Expand file tree Collapse file tree 3 files changed +7
-3
lines changed
Filter options
Expand file tree Collapse file tree 3 files changed +7
-3
lines changed
Original file line number Diff line number Diff line change @@ -193,8 +193,8 @@ modules using the Distutils:
193
193
module distribution
194
194
a collection of Python modules distributed together as a single downloadable
195
195
resource and meant to be installed *en masse *. Examples of some well-known
196
- module distributions are NumPy, SciPy, PIL (the Python Imaging
197
- Library), or mxBase. (This would be called a *package *, except that term is
196
+ module distributions are NumPy, SciPy, Pillow,
197
+ or mxBase. (This would be called a *package *, except that term is
198
198
already taken in the Python context: a single module distribution may contain
199
199
zero, one, or many Python packages.)
200
200
Original file line number Diff line number Diff line change @@ -800,6 +800,10 @@ reference to the image. When the last Python reference to the image object is
800
800
deleted, the image data is deleted as well, and Tk will display an empty box
801
801
wherever the image was used.
802
802
803
+ .. seealso ::
804
+
805
+ The `Pillow <http://python-pillow.org/ >`_ package adds support for
806
+ formats such as BMP, JPEG, TIFF, and WebP, among others.
803
807
804
808
.. _tkinter-file-handlers :
805
809
Original file line number Diff line number Diff line change @@ -382,7 +382,7 @@ module names". For example, the module name :mod:`A.B` designates a submodule
382
382
named ``B `` in a package named ``A ``. Just like the use of modules saves the
383
383
authors of different modules from having to worry about each other's global
384
384
variable names, the use of dotted module names saves the authors of multi-module
385
- packages like NumPy or the Python Imaging Library from having to worry about
385
+ packages like NumPy or Pillow from having to worry about
386
386
each other's module names.
387
387
388
388
Suppose you want to design a collection of modules (a "package") for the uniform
You can’t perform that action at this time.
0 commit comments