@@ -15,7 +15,7 @@ msgid ""
15
15
msgstr ""
16
16
"Project-Id-Version :Python 3.8\n "
17
17
"Report-Msgid-Bugs-To :\n "
18
- "POT-Creation-Date :2019-09-01 14:24 +0000\n "
18
+ "POT-Creation-Date :2019-09-19 11:29 +0000\n "
19
19
"PO-Revision-Date :2017-02-16 23:10+0000\n "
20
20
"Last-Translator :E. Kawashima, 2017\n "
21
21
"Language-Team :Japanese (https://www.transifex.com/python-doc/teams/5390/ja/)\n "
@@ -119,7 +119,7 @@ msgstr ""
119
119
"であれば、現在のスレッドのみダンプします。"
120
120
121
121
#: ../../library/faulthandler.rst:52 ../../library/faulthandler.rst:70
122
- #: ../../library/faulthandler.rst:106 ../../library/faulthandler.rst:128
122
+ #: ../../library/faulthandler.rst:108 ../../library/faulthandler.rst:130
123
123
msgid "Added support for passing file descriptor to this function."
124
124
msgstr ""
125
125
@@ -187,21 +187,22 @@ msgid ""
187
187
msgstr ""
188
188
189
189
#: ../../library/faulthandler.rst:103
190
- msgid ""
191
- "This function is implemented using a watchdog thread and therefore is not "
192
- "available if Python is compiled with threads disabled."
190
+ msgid "This function is implemented using a watchdog thread."
191
+ msgstr ""
192
+
193
+ #: ../../library/faulthandler.rst:105
194
+ msgid "This function is now always available."
193
195
msgstr ""
194
- "この関数は番犬(watchdog)スレッドを使って実装されているため、Pythonがスレッド無効でコンパイルされている場合は利用できません。"
195
196
196
- #: ../../library/faulthandler.rst:111
197
+ #: ../../library/faulthandler.rst:113
197
198
msgid "Cancel the last call to :func:`dump_traceback_later`."
198
199
msgstr ":func:`dump_traceback_later` の最新の呼び出しをキャンセルします。"
199
200
200
- #: ../../library/faulthandler.rst:115
201
+ #: ../../library/faulthandler.rst:117
201
202
msgid "Dumping the traceback on a user signal"
202
203
msgstr "ユーザシグナルに対してtracebackをダンプする"
203
204
204
- #: ../../library/faulthandler.rst:119
205
+ #: ../../library/faulthandler.rst:121
205
206
msgid ""
206
207
"Register a user signal: install a handler for the *signum* signal to dump "
207
208
"the traceback of all threads, or of the current thread if *all_threads* is "
@@ -211,18 +212,18 @@ msgstr ""
211
212
"*all_threads* が ``False`` であれば現在のスレッドのみ *file* にダンプします。もし chain が ``True`` "
212
213
"であれば以前のハンドラも呼び出します。"
213
214
214
- #: ../../library/faulthandler.rst:123
215
+ #: ../../library/faulthandler.rst:125
215
216
msgid ""
216
217
"The *file* must be kept open until the signal is unregistered by "
217
218
":func:`unregister`: see :ref:`issue with file descriptors <faulthandler-"
218
219
"fd>`."
219
220
msgstr ""
220
221
221
- #: ../../library/faulthandler.rst:126 ../../library/faulthandler.rst:137
222
+ #: ../../library/faulthandler.rst:128 ../../library/faulthandler.rst:139
222
223
msgid "Not available on Windows."
223
224
msgstr "Windowsでは利用不可です。"
224
225
225
- #: ../../library/faulthandler.rst:133
226
+ #: ../../library/faulthandler.rst:135
226
227
msgid ""
227
228
"Unregister a user signal: uninstall the handler of the *signum* signal "
228
229
"installed by :func:`register`. Return ``True`` if the signal was registered,"
@@ -231,11 +232,11 @@ msgstr ""
231
232
"ユーザシグナルを登録解除します: :func:`register` でインストールした *signum* "
232
233
"シグナルハンドラをアンインストールします。シグナルが登録された場合は ``True`` を返し、そうでなければ ``False`` を返します。"
233
234
234
- #: ../../library/faulthandler.rst:143
235
+ #: ../../library/faulthandler.rst:145
235
236
msgid "Issue with file descriptors"
236
237
msgstr "ファイル記述子の問題"
237
238
238
- #: ../../library/faulthandler.rst:145
239
+ #: ../../library/faulthandler.rst:147
239
240
msgid ""
240
241
":func:`enable`, :func:`dump_traceback_later` and :func:`register` keep the "
241
242
"file descriptor of their *file* argument. If the file is closed and its file"
@@ -248,11 +249,11 @@ msgstr ""
248
249
"の使用でファイル記述子が置き換えた場合、 traceback "
249
250
"の結果は別のファイルへ書き込まれます。ファイルが置き換えられた場合は、毎回これらの関数を呼び出しなおしてください。"
250
251
251
- #: ../../library/faulthandler.rst:153
252
+ #: ../../library/faulthandler.rst:155
252
253
msgid "Example"
253
254
msgstr "使用例"
254
255
255
- #: ../../library/faulthandler.rst:155
256
+ #: ../../library/faulthandler.rst:157
256
257
msgid ""
257
258
"Example of a segmentation fault on Linux with and without enabling the fault"
258
259
" handler:"