File tree 1 file changed +6
-3
lines changed
1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -17,16 +17,14 @@ msgstr ""
17
17
"Generated-By : Babel 2.17.0\n "
18
18
19
19
#: ../../library/colorsys.rst:2
20
- #, fuzzy
21
20
msgid ":mod:`!colorsys` --- Conversions between color systems"
22
- msgstr ":mod:`colorsys` --- 색 체계 간의 변환"
21
+ msgstr ":mod:`! colorsys` --- 색 체계 간의 변환"
23
22
24
23
#: ../../library/colorsys.rst:9
25
24
msgid "**Source code:** :source:`Lib/colorsys.py`"
26
25
msgstr "**소스 코드:** :source:`Lib/colorsys.py`"
27
26
28
27
#: ../../library/colorsys.rst:13
29
- #, fuzzy
30
28
msgid ""
31
29
"The :mod:`colorsys` module defines bidirectional conversions of color "
32
30
"values between colors expressed in the RGB (Red Green Blue) color space "
@@ -93,4 +91,9 @@ msgid ""
93
91
">>> colorsys.hsv_to_rgb(0.5, 0.5, 0.4)\n"
94
92
"(0.2, 0.4, 0.4)"
95
93
msgstr ""
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)"
96
99
You can’t perform that action at this time.
0 commit comments