Skip to content

Commit 8cfa866

Browse files
committed
#916 - remove fuzzy flags
1 parent a7b2f5b commit 8cfa866

File tree

1 file changed

+24
-14
lines changed

1 file changed

+24
-14
lines changed

library/faulthandler.po

+24-14
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,10 @@ msgstr ""
1717
"Generated-By: Babel 2.17.0\n"
1818

1919
#: ../../library/faulthandler.rst:2
20-
#, fuzzy
2120
msgid ":mod:`!faulthandler` --- Dump the Python traceback"
22-
msgstr ":mod:`faulthandler` --- 파이썬 트레이스백 덤프"
21+
msgstr ":mod:`!faulthandler` --- 파이썬 트레이스백 덤프"
2322

2423
#: ../../library/faulthandler.rst:11
25-
#, fuzzy
2624
msgid ""
2725
"This module contains functions to dump Python tracebacks explicitly, on a"
2826
" fault, after a timeout, or on a user signal. Call "
@@ -34,21 +32,21 @@ msgid ""
3432
" the :option:`-X` ``faulthandler`` command line option."
3533
msgstr ""
3634
"이 모듈은 결함(fault) 시, 시간 초과 후 또는 사용자 시그널에 파이썬 트레이스백을 명시적으로 덤프하는 함수를 포함합니다. "
37-
":const:`SIGSEGV`, :const:`SIGFPE`, :const:`SIGABRT`, :const:`SIGBUS` 및 "
38-
":const:`SIGILL` 시그널에 대한 결함 처리기를 설치하려면 :func:`faulthandler.enable`\\를 "
39-
"호출하십시오. :envvar:`PYTHONFAULTHANDLER` 환경 변수를 설정하거나 :option:`-X` "
40-
"``faulthandler`` 명령 줄 옵션을 사용하여 시작할 때 활성화할 수도 있습니다."
35+
":const:`~signal.SIGSEGV`, :const:`~signal.SIGFPE`, "
36+
":const:`~signal.SIGABRT`, :const:`~signal.SIGBUS` 및 "
37+
":const:`~signal.SIGILL` 시그널에 대한 결함 처리기를 설치하려면 "
38+
":func:`faulthandler.enable`\\를 호출하십시오. :envvar:`PYTHONFAULTHANDLER` 환경 "
39+
"변수를 설정하거나 :option:`-X` ``faulthandler`` 명령 줄 옵션을 사용하여 시작할 때 활성화할 수도 있습니다."
4140

4241
#: ../../library/faulthandler.rst:19
43-
#, fuzzy
4442
msgid ""
4543
"The fault handler is compatible with system fault handlers like Apport or"
4644
" the Windows fault handler. The module uses an alternative stack for "
4745
"signal handlers if the :c:func:`!sigaltstack` function is available. This"
4846
" allows it to dump the traceback even on a stack overflow."
4947
msgstr ""
5048
"결함 처리기는 Apport나 윈도우 결함 처리기(Windows fault handler)와 같은 시스템 결함 처리기와 호환됩니다. "
51-
"이 모듈은 :c:func:`sigaltstack` 함수를 사용할 수 있으면 시그널 처리기에 대체 스택을 사용합니다. 이것은 스택 "
49+
"이 모듈은 :c:func:`!sigaltstack` 함수를 사용할 수 있으면 시그널 처리기에 대체 스택을 사용합니다. 이것은 스택 "
5250
"오버플로에서조차 트레이스백을 덤프할 수 있도록 합니다."
5351

5452
#: ../../library/faulthandler.rst:24
@@ -152,7 +150,6 @@ msgid "Fault handler state"
152150
msgstr "결함 처리기 상태"
153151

154152
#: ../../library/faulthandler.rst:74
155-
#, fuzzy
156153
msgid ""
157154
"Enable the fault handler: install handlers for the "
158155
":const:`~signal.SIGSEGV`, :const:`~signal.SIGFPE`, "
@@ -161,8 +158,9 @@ msgid ""
161158
"*all_threads* is ``True``, produce tracebacks for every running thread. "
162159
"Otherwise, dump only the current thread."
163160
msgstr ""
164-
"결함 처리기를 활성화합니다: :const:`SIGSEGV`, :const:`SIGFPE`, :const:`SIGABRT`, "
165-
":const:`SIGBUS` 및 :const:`SIGILL` 시그널에 대한 처리기를 설치하여 파이썬 트레이스백을 덤프합니다. "
161+
"결함 처리기를 활성화합니다: :const:`~signal.SIGSEGV`, :const:`~signal.SIGFPE`, "
162+
":const:`~signal.SIGABRT`, :const:`~signal.SIGBUS` 및 "
163+
":const:`~signal.SIGILL` 시그널에 대한 처리기를 설치하여 파이썬 트레이스백을 덤프합니다. "
166164
"*all_threads*\\가 ``True``\\면 실행 중인 모든 스레드에 대한 트레이스백을 생성합니다. 그렇지 않으면, 현재 "
167165
"스레드만 덤프합니다."
168166

@@ -199,7 +197,6 @@ msgid "Dumping the tracebacks after a timeout"
199197
msgstr "시간 초과 후에 트레이스백 덤프하기"
200198

201199
#: ../../library/faulthandler.rst:109
202-
#, fuzzy
203200
msgid ""
204201
"Dump the tracebacks of all threads, after a timeout of *timeout* seconds,"
205202
" or every *timeout* seconds if *repeat* is ``True``. If *exit* is "
@@ -211,7 +208,7 @@ msgid ""
211208
msgstr ""
212209
"*timeout* 초의 시간제한 후, 또는 *repeat*\\가 ``True``\\면 매 *timeout* 초마다, 모든 스레드의 "
213210
"트레이스백을 덤프합니다. *exit*\\가 ``True``\\면, 트레이스백을 덤프한 후 status=1 로 "
214-
":c:func:`_exit`\\를 호출합니다. (:c:func:`_exit`\\가 프로세스를 즉시 종료함에 유의하십시오. 파일 "
211+
":c:func:`!_exit`\\를 호출합니다. (:c:func:`!_exit`\\가 프로세스를 즉시 종료함에 유의하십시오. 파일 "
215212
"버퍼를 플러시 하는 것과 같은 정리 작업을 수행하지 않습니다.) 함수가 두 번 호출되면, 새 호출은 이전 매개 변수를 대체하고 "
216213
"시간제한을 다시 설정합니다. 타이머는 1초 미만의 해상도를 갖습니다."
217214

@@ -316,4 +313,17 @@ msgid ""
316313
" File \"<stdin>\", line 1 in <module>\n"
317314
"Segmentation fault"
318315
msgstr ""
316+
"$ python -c \"import ctypes; ctypes.string_at(0)\"\n"
317+
"Segmentation fault\n"
318+
"\n"
319+
"$ python -q -X faulthandler\n"
320+
">>> import ctypes\n"
321+
">>> ctypes.string_at(0)\n"
322+
"Fatal Python error: Segmentation fault\n"
323+
"\n"
324+
"Current thread 0x00007fb899f39700 (most recent call first):\n"
325+
" File \"/home/python/cpython/Lib/ctypes/__init__.py\", line 486 in "
326+
"string_at\n"
327+
" File \"<stdin>\", line 1 in <module>\n"
328+
"Segmentation fault"
319329

0 commit comments

Comments
 (0)