diff options
author | Fred Drake <fdrake@acm.org> | 1999-02-25 14:26:02 +0000 |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 1999-02-25 14:26:02 +0000 |
commit | bff3ae1f75a8635f107b0ba1acc7bbf1e8379e0d (patch) | |
tree | 3b63a9f23bd6856bac60f8d61ff2adbcd09c646b | |
parent | 87209172f0c7b672c2662f75664de7b07edcb802 (diff) | |
download | cpython-git-bff3ae1f75a8635f107b0ba1acc7bbf1e8379e0d.tar.gz |
Oops, one more "x, y, z" to convert...
-rw-r--r-- | Lib/colorsys.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/colorsys.py b/Lib/colorsys.py index dd6865cbe0..8a096dc2f1 100644 --- a/Lib/colorsys.py +++ b/Lib/colorsys.py @@ -3,7 +3,7 @@ This modules provides two functions for each color system ABC: rgb_to_abc(r, g, b) --> a, b, c - abc_to_rgb(x, y, z) --> r, g, b + abc_to_rgb(a, b, c) --> r, g, b All inputs and outputs are triples of floats in the range [0.0...1.0]. Inputs outside this range may cause exceptions or invalid outputs. |