File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed
Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -17,16 +17,14 @@ msgstr ""
1717"Generated-By : Babel 2.17.0\n "
1818
1919#: ../../library/colorsys.rst:2
20- #, fuzzy
2120msgid ":mod:`!colorsys` --- Conversions between color systems"
22- msgstr ":mod:`colorsys` --- 색 체계 간의 변환"
21+ msgstr ":mod:`! colorsys` --- 색 체계 간의 변환"
2322
2423#: ../../library/colorsys.rst:9
2524msgid "**Source code:** :source:`Lib/colorsys.py`"
2625msgstr "**소스 코드:** :source:`Lib/colorsys.py`"
2726
2827#: ../../library/colorsys.rst:13
29- #, fuzzy
3028msgid ""
3129"The :mod:`colorsys` module defines bidirectional conversions of color "
3230"values between colors expressed in the RGB (Red Green Blue) color space "
@@ -93,4 +91,9 @@ msgid ""
9391">>> colorsys.hsv_to_rgb(0.5, 0.5, 0.4)\n"
9492"(0.2, 0.4, 0.4)"
9593msgstr ""
94+ ">>> import colorsys\n"
95+ ">>> colorsys.rgb_to_hsv(0.2, 0.4, 0.4)\n"
96+ "(0.5, 0.5, 0.4)\n"
97+ ">>> colorsys.hsv_to_rgb(0.5, 0.5, 0.4)\n"
98+ "(0.2, 0.4, 0.4)"
9699
You can’t perform that action at this time.
0 commit comments