Skip to content

Commit 6ed55f2

Browse files
committed
#964 - remove fuzzy flags
1 parent 1d4cd14 commit 6ed55f2

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

library/colorsys.po

+6-3
Original file line numberDiff line numberDiff line change
@@ -17,16 +17,14 @@ msgstr ""
1717
"Generated-By: Babel 2.17.0\n"
1818

1919
#: ../../library/colorsys.rst:2
20-
#, fuzzy
2120
msgid ":mod:`!colorsys` --- Conversions between color systems"
22-
msgstr ":mod:`colorsys` --- 색 체계 간의 변환"
21+
msgstr ":mod:`!colorsys` --- 색 체계 간의 변환"
2322

2423
#: ../../library/colorsys.rst:9
2524
msgid "**Source code:** :source:`Lib/colorsys.py`"
2625
msgstr "**소스 코드:** :source:`Lib/colorsys.py`"
2726

2827
#: ../../library/colorsys.rst:13
29-
#, fuzzy
3028
msgid ""
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)"
9593
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)"
9699

0 commit comments

Comments
 (0)