diff options
author | Fred Drake <fdrake@acm.org> | 2000-02-14 21:30:52 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2000-02-14 21:30:52 (GMT) |
commit | b217687a6cb8f81db5040ccc6b5f1b25a6994c3a (patch) | |
tree | 311101455a4c253efdcfe61039f47b1ebd411734 /Lib | |
parent | bf6267e6f8222dc37d006961b14ef8692ec459d6 (diff) | |
download | cpython-b217687a6cb8f81db5040ccc6b5f1b25a6994c3a.zip cpython-b217687a6cb8f81db5040ccc6b5f1b25a6994c3a.tar.gz cpython-b217687a6cb8f81db5040ccc6b5f1b25a6994c3a.tar.bz2 |
Fix the question marks next to the expansions of some of the
colorspace name abbreviations, based on email from Gerrit Holl
<gerrit.holl@pobox.com>.
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/colorsys.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/colorsys.py b/Lib/colorsys.py index 8a096dc..4a62f9d 100644 --- a/Lib/colorsys.py +++ b/Lib/colorsys.py @@ -11,8 +11,8 @@ Inputs outside this range may cause exceptions or invalid outputs. Supported color systems: RGB: Red, Green, Blue components YIQ: used by composite video signals -HLS: Hue, Luminance, S??? -HSV: Hue, Saturation, Value(?) +HLS: Hue, Luminance, Saturation +HSV: Hue, Saturation, Value """ # References: # XXX Where's the literature? |