Skip to content

Commit bb847e4

Browse files
committed
#907 - remove fuzzy flags
1 parent dafc566 commit bb847e4

File tree

1 file changed

+33
-11
lines changed

1 file changed

+33
-11
lines changed

library/gc.po

+33-11
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,8 @@ msgstr ""
1717
"Generated-By: Babel 2.17.0\n"
1818

1919
#: ../../library/gc.rst:2
20-
#, fuzzy
2120
msgid ":mod:`!gc` --- Garbage Collector interface"
22-
msgstr ":mod:`gc` --- 가비지 수거기 인터페이스"
21+
msgstr ":mod:`!gc` --- 가비지 수거기 인터페이스"
2322

2423
#: ../../library/gc.rst:12
2524
msgid ""
@@ -60,7 +59,6 @@ msgid "Return ``True`` if automatic collection is enabled."
6059
msgstr "자동 수거가 활성화되었으면 ``True``\\를 반환합니다."
6160

6261
#: ../../library/gc.rst:43
63-
#, fuzzy
6462
msgid ""
6563
"With no arguments, run a full collection. The optional argument "
6664
"*generation* may be an integer specifying which generation to collect "
@@ -69,8 +67,8 @@ msgid ""
6967
"returned."
7068
msgstr ""
7169
"인자가 없으면, 전체 수거를 실행합니다. 선택적 인자 *generation*\\은 어떤 세대를 수거할지 지정하는 정수(0에서 2)일"
72-
" 수 있습니다. 세대 번호가 유효하지 않으면 :exc:`ValueError`\\가 발생합니다. 발견된 도달할 수 "
73-
"없는(unreachable) 객체의 수가 반환됩니다."
70+
" 수 있습니다. 세대 번호가 유효하지 않으면 :exc:`ValueError`\\가 발생합니다. 수거된 객체와 수거할 수 없는 객체의"
71+
" 합을 반환합니다."
7472

7573
#: ../../library/gc.rst:48
7674
msgid ""
@@ -102,14 +100,13 @@ msgid "Return the debugging flags currently set."
102100
msgstr "현재 설정된 디버깅 플래그를 반환합니다."
103101

104102
#: ../../library/gc.rst:71
105-
#, fuzzy
106103
msgid ""
107104
"Returns a list of all objects tracked by the collector, excluding the "
108105
"list returned. If *generation* is not ``None``, return only the objects "
109106
"tracked by the collector that are in that generation."
110107
msgstr ""
111-
"반환된 리스트를 제외하고, 수거기에서 추적한 모든 객체의 리스트를 반환합니다. *generation*\\None이 아니면, "
112-
"수거기가 추적한 해당 세대에 있는 객체만 반환합니다."
108+
"반환된 리스트를 제외하고, 수거기에서 추적한 모든 객체의 리스트를 반환합니다. *generation*\\``None``\\ "
109+
"아니면, 수거기가 추적한 해당 세대에 있는 객체만 반환합니다."
113110

114111
#: ../../library/gc.rst:75
115112
msgid "New *generation* parameter."
@@ -287,6 +284,18 @@ msgid ""
287284
">>> gc.is_tracked({\"a\": []})\n"
288285
"True"
289286
msgstr ""
287+
">>> gc.is_tracked(0)\n"
288+
"False\n"
289+
">>> gc.is_tracked(\"a\")\n"
290+
"False\n"
291+
">>> gc.is_tracked([])\n"
292+
"True\n"
293+
">>> gc.is_tracked({})\n"
294+
"False\n"
295+
">>> gc.is_tracked({\"a\": 1})\n"
296+
"False\n"
297+
">>> gc.is_tracked({\"a\": []})\n"
298+
"True"
290299

291300
#: ../../library/gc.rst:191
292301
msgid ""
@@ -311,12 +320,26 @@ msgid ""
311320
">>> gc.is_finalized(x)\n"
312321
"True"
313322
msgstr ""
323+
">>> x = None\n"
324+
">>> class Lazarus:\n"
325+
"... def __del__(self):\n"
326+
"... global x\n"
327+
"... x = self\n"
328+
"...\n"
329+
">>> lazarus = Lazarus()\n"
330+
">>> gc.is_finalized(lazarus)\n"
331+
"False\n"
332+
">>> del lazarus\n"
333+
">>> gc.is_finalized(x)\n"
334+
"True"
314335

315336
#: ../../library/gc.rst:212
316337
msgid ""
317338
"Freeze all the objects tracked by the garbage collector; move them to a "
318339
"permanent generation and ignore them in all the future collections."
319340
msgstr ""
341+
"가비지 수거기가 추적한 모든 객체를 고정합니다; 그들을 영구 세대(permanent generation)로 이동하고 향후 모든 "
342+
"수거에서 그들을 무시합니다."
320343

321344
#: ../../library/gc.rst:215
322345
msgid ""
@@ -374,13 +397,12 @@ msgstr ""
374397
":const:`DEBUG_UNCOLLECTABLE`\\이 설정되면, 추가로 모든 수거 할 수 없는 객체가 인쇄됩니다."
375398

376399
#: ../../library/gc.rst:261
377-
#, fuzzy
378400
msgid ""
379401
"Following :pep:`442`, objects with a :meth:`~object.__del__` method don't"
380402
" end up in :data:`gc.garbage` anymore."
381403
msgstr ""
382-
":pep:`442`\\에 따라, :meth:`__del__` 메서드를 가진 객체는 더는 :attr:`gc.garbage`\\ "
383-
"들어가지 않습니다."
404+
":pep:`442`\\에 따라, :meth:`~object.__del__` 메서드를 가진 객체는 더는 "
405+
":data:`gc.garbage`\\들어가지 않습니다."
384406

385407
#: ../../library/gc.rst:267
386408
msgid ""

0 commit comments

Comments
 (0)