@@ -11,7 +11,7 @@ msgid ""
1111msgstr ""
1212"Project-Id-Version : Python 3.6\n "
1313"Report-Msgid-Bugs-To : \n "
14- "POT-Creation-Date : 2019-01-01 15:22 +0900\n "
14+ "POT-Creation-Date : 2019-03-18 16:02 +0900\n "
1515"PO-Revision-Date : 2018-06-29 17:32+0000\n "
1616"Last-Translator : tomo, 2018\n "
1717"Language-Team : Japanese (https://www.transifex.com/python-doc/teams/5390/ja/)\n "
@@ -182,15 +182,6 @@ msgstr "最大で *max_workers* 個のスレッドを非同期実行に使う :c
182182
183183#: ../../library/concurrent.futures.rst:140
184184msgid ""
185- "*initializer* is an optional callable that is called at the start of each "
186- "worker thread; *initargs* is a tuple of arguments passed to the initializer."
187- " Should *initializer* raise an exception, all currently pending jobs will "
188- "raise a :exc:`~concurrent.futures.thread.BrokenThreadPool`, as well any "
189- "attempt to submit more jobs to the pool."
190- msgstr ""
191-
192- #: ../../library/concurrent.futures.rst:146
193- msgid ""
194185"If *max_workers* is ``None`` or not given, it will default to the number of "
195186"processors on the machine, multiplied by ``5``, assuming that "
196187":class:`ThreadPoolExecutor` is often used to overlap I/O instead of CPU work"
@@ -201,22 +192,22 @@ msgstr ""
201192":class:`ThreadPoolExecutor` は CPU の処理ではなく I/O をオーバーラップするのによく使用されるため、 "
202193":class:`ProcessPoolExecutor` のワーカーの数よりもこのワーカーの数を増やすべきであるという想定に基づいています。"
203194
204- #: ../../library/concurrent.futures.rst:154
195+ #: ../../library/concurrent.futures.rst:148
205196msgid ""
206197"The *thread_name_prefix* argument was added to allow users to control the "
207198":class:`threading.Thread` names for worker threads created by the pool for "
208199"easier debugging."
209200msgstr ""
210201
211- #: ../../library/concurrent.futures.rst:162
202+ #: ../../library/concurrent.futures.rst:156
212203msgid "ThreadPoolExecutor Example"
213204msgstr "ThreadPoolExecutor の例"
214205
215- #: ../../library/concurrent.futures.rst:194
206+ #: ../../library/concurrent.futures.rst:188
216207msgid "ProcessPoolExecutor"
217208msgstr "ProcessPoolExecutor"
218209
219- #: ../../library/concurrent.futures.rst:196
210+ #: ../../library/concurrent.futures.rst:190
220211msgid ""
221212"The :class:`ProcessPoolExecutor` class is an :class:`Executor` subclass that"
222213" uses a pool of processes to execute calls asynchronously. "
@@ -229,7 +220,7 @@ msgstr ""
229220"モジュールを利用します。このため :term:`Global Interpreter Lock` を回避することができますが、pickle "
230221"化できるオブジェクトしか実行したり返したりすることができません。"
231222
232- #: ../../library/concurrent.futures.rst:202
223+ #: ../../library/concurrent.futures.rst:196
233224msgid ""
234225"The ``__main__`` module must be importable by worker subprocesses. This "
235226"means that :class:`ProcessPoolExecutor` will not work in the interactive "
@@ -238,15 +229,15 @@ msgstr ""
238229"``__main__`` モジュールはワーカサブプロセスでインポート可能でなければなりません。\n"
239230"すなわち、 :class:`ProcessPoolExecutor` は対話的インタープリタでは動きません。"
240231
241- #: ../../library/concurrent.futures.rst:205
232+ #: ../../library/concurrent.futures.rst:199
242233msgid ""
243234"Calling :class:`Executor` or :class:`Future` methods from a callable "
244235"submitted to a :class:`ProcessPoolExecutor` will result in deadlock."
245236msgstr ""
246237":class:`ProcessPoolExecutor` に渡された呼び出し可能オブジェクトから :class:`Executor` や "
247238":class:`Future` メソッドを呼ぶとデッドロックに陥ります。"
248239
249- #: ../../library/concurrent.futures.rst:210
240+ #: ../../library/concurrent.futures.rst:204
250241msgid ""
251242"An :class:`Executor` subclass that executes calls asynchronously using a "
252243"pool of at most *max_workers* processes. If *max_workers* is ``None`` or "
@@ -258,7 +249,7 @@ msgstr ""
258249"*max_workers* が ``None`` や与えられなかった場合、デフォルトでマシンのプロセッサの数になります。\n"
259250"*max_workers* が ``0`` 以下の場合 :exc:`ValueError` が送出されます。"
260251
261- #: ../../library/concurrent.futures.rst:216
252+ #: ../../library/concurrent.futures.rst:210
262253msgid ""
263254"When one of the worker processes terminates abruptly, a "
264255":exc:`BrokenProcessPool` error is now raised. Previously, behaviour was "
@@ -268,23 +259,23 @@ msgstr ""
268259"ワーカプロセスの1つが突然終了した場合、:exc:`BrokenProcessPool` エラーが送出されるようになりました。\n"
269260"以前は挙動は未定義でしたが、 executor や futures がフリーズしたりデッドロックを起こすことがしばしばでした。"
270261
271- #: ../../library/concurrent.futures.rst:226
262+ #: ../../library/concurrent.futures.rst:220
272263msgid "ProcessPoolExecutor Example"
273264msgstr "ProcessPoolExecutor の例"
274265
275- #: ../../library/concurrent.futures.rst:260
266+ #: ../../library/concurrent.futures.rst:254
276267msgid "Future Objects"
277268msgstr "Future オブジェクト"
278269
279- #: ../../library/concurrent.futures.rst:262
270+ #: ../../library/concurrent.futures.rst:256
280271msgid ""
281272"The :class:`Future` class encapsulates the asynchronous execution of a "
282273"callable. :class:`Future` instances are created by :meth:`Executor.submit`."
283274msgstr ""
284275":class:`Future` クラスは呼び出し可能オブジェクトの非同期実行をカプセル化します。 :class:`Future` のインスタンスは "
285276":meth:`Executor.submit` によって生成されます。"
286277
287- #: ../../library/concurrent.futures.rst:267
278+ #: ../../library/concurrent.futures.rst:261
288279msgid ""
289280"Encapsulates the asynchronous execution of a callable. :class:`Future` "
290281"instances are created by :meth:`Executor.submit` and should not be created "
@@ -293,7 +284,7 @@ msgstr ""
293284"呼び出し可能オブジェクトの非同期実行をカプセル化します。 :class:`Future` インスタンスは :meth:`Executor.submit`"
294285" で生成され、テストを除いて直接生成すべきではありません。"
295286
296- #: ../../library/concurrent.futures.rst:273
287+ #: ../../library/concurrent.futures.rst:267
297288msgid ""
298289"Attempt to cancel the call. If the call is currently being executed and "
299290"cannot be cancelled then the method will return ``False``, otherwise the "
@@ -302,22 +293,22 @@ msgstr ""
302293"呼び出しのキャンセルを試みます。もし呼び出しが現在実行中でキャンセルすることができない場合、メソッドは ``False`` "
303294"を返します。そうでない場合呼び出しはキャンセルされ、``True`` を返します。"
304295
305- #: ../../library/concurrent.futures.rst:279
296+ #: ../../library/concurrent.futures.rst:273
306297msgid "Return ``True`` if the call was successfully cancelled."
307298msgstr "呼び出しが正常にキャンセルされた場合 ``True`` を返します。"
308299
309- #: ../../library/concurrent.futures.rst:283
300+ #: ../../library/concurrent.futures.rst:277
310301msgid ""
311302"Return ``True`` if the call is currently being executed and cannot be "
312303"cancelled."
313304msgstr "現在呼び出しが実行中でキャンセルできない場合 ``True`` を返します。"
314305
315- #: ../../library/concurrent.futures.rst:288
306+ #: ../../library/concurrent.futures.rst:282
316307msgid ""
317308"Return ``True`` if the call was successfully cancelled or finished running."
318309msgstr "呼び出しが正常にキャンセルされたか終了した場合 ``True`` を返します。"
319310
320- #: ../../library/concurrent.futures.rst:293
311+ #: ../../library/concurrent.futures.rst:287
321312msgid ""
322313"Return the value returned by the call. If the call hasn't yet completed then"
323314" this method will wait up to *timeout* seconds. If the call hasn't "
@@ -331,18 +322,18 @@ msgstr ""
331322"*timeout* にはintかfloatを指定できます。*timeout* が指定されていないか、 ``None`` "
332323"である場合、待機時間に制限はありません。"
333324
334- #: ../../library/concurrent.futures.rst:300
335- #: ../../library/concurrent.futures.rst:314
325+ #: ../../library/concurrent.futures.rst:294
326+ #: ../../library/concurrent.futures.rst:308
336327msgid ""
337328"If the future is cancelled before completing then :exc:`.CancelledError` "
338329"will be raised."
339330msgstr "future が完了する前にキャンセルされた場合 :exc:`CancelledError` が送出されます。"
340331
341- #: ../../library/concurrent.futures.rst:303
332+ #: ../../library/concurrent.futures.rst:297
342333msgid "If the call raised, this method will raise the same exception."
343334msgstr "呼び出しが例外を送出した場合、このメソッドは同じ例外を送出します。"
344335
345- #: ../../library/concurrent.futures.rst:307
336+ #: ../../library/concurrent.futures.rst:301
346337msgid ""
347338"Return the exception raised by the call. If the call hasn't yet completed "
348339"then this method will wait up to *timeout* seconds. If the call hasn't "
@@ -356,11 +347,11 @@ msgstr ""
356347"*timeout* にはintかfloatを指定できます。 *timeout* が指定されていないか、 ``None`` "
357348"である場合、待機時間に制限はありません。"
358349
359- #: ../../library/concurrent.futures.rst:317
350+ #: ../../library/concurrent.futures.rst:311
360351msgid "If the call completed without raising, ``None`` is returned."
361352msgstr "呼び出しが例外を送出することなく完了した場合、``None`` を返します。"
362353
363- #: ../../library/concurrent.futures.rst:321
354+ #: ../../library/concurrent.futures.rst:315
364355msgid ""
365356"Attaches the callable *fn* to the future. *fn* will be called, with the "
366357"future as its only argument, when the future is cancelled or finishes "
@@ -369,7 +360,7 @@ msgstr ""
369360"呼び出し可能な *fn* オブジェクトを future にアタッチします。futureがキャンセルされたか、実行を終了した際に、future "
370361"をそのただ一つの引数として *fn* が呼び出されます。"
371362
372- #: ../../library/concurrent.futures.rst:325
363+ #: ../../library/concurrent.futures.rst:319
373364msgid ""
374365"Added callables are called in the order that they were added and are always "
375366"called in a thread belonging to the process that added them. If the "
@@ -381,20 +372,20 @@ msgstr ""
381372" :exc:`Exception` のサブクラスを送出した場合、それはログに記録され無視されます。呼び出し可能オブジェクトが "
382373":exc:`BaseException` のサブクラスを送出した場合の動作は未定義です。"
383374
384- #: ../../library/concurrent.futures.rst:331
375+ #: ../../library/concurrent.futures.rst:325
385376msgid ""
386377"If the future has already completed or been cancelled, *fn* will be called "
387378"immediately."
388379msgstr "もしfutureがすでに完了しているか、キャンセル済みであれば、*fn* は即座に実行されます。"
389380
390- #: ../../library/concurrent.futures.rst:334
381+ #: ../../library/concurrent.futures.rst:328
391382msgid ""
392383"The following :class:`Future` methods are meant for use in unit tests and "
393384":class:`Executor` implementations."
394385msgstr ""
395386"以下の :class:`Future` メソッドは、ユニットテストでの使用と :class:`Executor` を実装することを意図しています。"
396387
397- #: ../../library/concurrent.futures.rst:339
388+ #: ../../library/concurrent.futures.rst:333
398389msgid ""
399390"This method should only be called by :class:`Executor` implementations "
400391"before executing the work associated with the :class:`Future` and by unit "
@@ -403,7 +394,7 @@ msgstr ""
403394"このメソッドは、:class:`Future` に関連付けられたワークやユニットテストによるワークの実行前に、 :class:`Executor` "
404395"の実装によってのみ呼び出してください。"
405396
406- #: ../../library/concurrent.futures.rst:343
397+ #: ../../library/concurrent.futures.rst:337
407398msgid ""
408399"If the method returns ``False`` then the :class:`Future` was cancelled, i.e."
409400" :meth:`Future.cancel` was called and returned `True`. Any threads waiting "
@@ -414,7 +405,7 @@ msgstr ""
414405":meth:`Future.cancel` が呼び出されて `True` が返っています。:class:`Future` の完了を "
415406"(:func:`as_completed` または :func:`wait` により) 待機するすべてのスレッドが起動します。"
416407
417- #: ../../library/concurrent.futures.rst:348
408+ #: ../../library/concurrent.futures.rst:342
418409msgid ""
419410"If the method returns ``True`` then the :class:`Future` was not cancelled "
420411"and has been put in the running state, i.e. calls to :meth:`Future.running` "
@@ -423,38 +414,38 @@ msgstr ""
423414"このメソッドが ``True`` を返す場合、 :class:`Future` はキャンセルされて、実行状態に移行されています。つまり、 "
424415":meth:`Future.running` を呼び出すと `True` が返ります。"
425416
426- #: ../../library/concurrent.futures.rst:352
417+ #: ../../library/concurrent.futures.rst:346
427418msgid ""
428419"This method can only be called once and cannot be called after "
429420":meth:`Future.set_result` or :meth:`Future.set_exception` have been called."
430421msgstr ""
431422"このメソッドは、一度だけ呼び出すことができ、:meth:`Future.set_result` または "
432423":meth:`Future.set_exception` がキャンセルされた後には呼び出すことができません。"
433424
434- #: ../../library/concurrent.futures.rst:358
425+ #: ../../library/concurrent.futures.rst:352
435426msgid ""
436427"Sets the result of the work associated with the :class:`Future` to *result*."
437428msgstr ":class:`Future` に関連付けられたワークの結果を *result* に設定します。"
438429
439- #: ../../library/concurrent.futures.rst:361
440- #: ../../library/concurrent.futures.rst:369
430+ #: ../../library/concurrent.futures.rst:355
431+ #: ../../library/concurrent.futures.rst:363
441432msgid ""
442433"This method should only be used by :class:`Executor` implementations and "
443434"unit tests."
444435msgstr "このメソッドは、 :class:`Executor` の実装またはユニットテストによってのみ使用してください。"
445436
446- #: ../../library/concurrent.futures.rst:366
437+ #: ../../library/concurrent.futures.rst:360
447438msgid ""
448439"Sets the result of the work associated with the :class:`Future` to the "
449440":class:`Exception` *exception*."
450441msgstr ""
451442":class:`Future` に関連付けられたワークの結果を :class:`Exception` *exception* に設定します。"
452443
453- #: ../../library/concurrent.futures.rst:374
444+ #: ../../library/concurrent.futures.rst:368
454445msgid "Module Functions"
455446msgstr "モジュール関数"
456447
457- #: ../../library/concurrent.futures.rst:378
448+ #: ../../library/concurrent.futures.rst:372
458449msgid ""
459450"Wait for the :class:`Future` instances (possibly created by different "
460451":class:`Executor` instances) given by *fs* to complete. Returns a named "
@@ -467,7 +458,7 @@ msgstr ""
467458"には、待機の完了前に完了したフューチャ (完了またはキャンセル済み) が含まれます。2 つめの集合 ``not_done`` "
468459"には、未完了のフューチャが含まれます。"
469460
470- #: ../../library/concurrent.futures.rst:384
461+ #: ../../library/concurrent.futures.rst:378
471462msgid ""
472463"*timeout* can be used to control the maximum number of seconds to wait "
473464"before returning. *timeout* can be an int or float. If *timeout* is not "
@@ -476,33 +467,33 @@ msgstr ""
476467"*timeout* で結果を返すまで待機する最大秒数を指定できます。*timeout* は整数か浮動小数点数をとります。*timeout* "
477468"が指定されないか ``None`` の場合、無期限に待機します。"
478469
479- #: ../../library/concurrent.futures.rst:388
470+ #: ../../library/concurrent.futures.rst:382
480471msgid ""
481472"*return_when* indicates when this function should return. It must be one of"
482473" the following constants:"
483474msgstr "*return_when* でこの関数がいつ結果を返すか指定します。指定できる値は以下の 定数のどれか一つです:"
484475
485- #: ../../library/concurrent.futures.rst:394
476+ #: ../../library/concurrent.futures.rst:388
486477msgid "Constant"
487478msgstr "定数"
488479
489- #: ../../library/concurrent.futures.rst:394
480+ #: ../../library/concurrent.futures.rst:388
490481msgid "Description"
491482msgstr "説明"
492483
493- #: ../../library/concurrent.futures.rst:396
484+ #: ../../library/concurrent.futures.rst:390
494485msgid ":const:`FIRST_COMPLETED`"
495486msgstr ":const:`FIRST_COMPLETED`"
496487
497- #: ../../library/concurrent.futures.rst:396
488+ #: ../../library/concurrent.futures.rst:390
498489msgid "The function will return when any future finishes or is cancelled."
499490msgstr "いずれかのフューチャが終了したかキャンセルされたときに返します。"
500491
501- #: ../../library/concurrent.futures.rst:399
492+ #: ../../library/concurrent.futures.rst:393
502493msgid ":const:`FIRST_EXCEPTION`"
503494msgstr ":const:`FIRST_EXCEPTION`"
504495
505- #: ../../library/concurrent.futures.rst:399
496+ #: ../../library/concurrent.futures.rst:393
506497msgid ""
507498"The function will return when any future finishes by raising an exception. "
508499"If no future raises an exception then it is equivalent to "
@@ -511,15 +502,15 @@ msgstr ""
511502"いずれかのフューチャが例外の送出で終了した場合に返します。例外を送出したフューチャがない場合は、:const:`ALL_COMPLETED` "
512503"と等価になります。"
513504
514- #: ../../library/concurrent.futures.rst:405
505+ #: ../../library/concurrent.futures.rst:399
515506msgid ":const:`ALL_COMPLETED`"
516507msgstr ":const:`ALL_COMPLETED`"
517508
518- #: ../../library/concurrent.futures.rst:405
509+ #: ../../library/concurrent.futures.rst:399
519510msgid "The function will return when all futures finish or are cancelled."
520511msgstr "すべてのフューチャが終了したかキャンセルされたときに返します。"
521512
522- #: ../../library/concurrent.futures.rst:411
513+ #: ../../library/concurrent.futures.rst:405
523514msgid ""
524515"Returns an iterator over the :class:`Future` instances (possibly created by "
525516"different :class:`Executor` instances) given by *fs* that yields futures as "
@@ -540,29 +531,29 @@ msgstr ""
540531"を送出します。*timeout* は整数または浮動小数点数です。*timeout* が指定されないか ``None`` "
541532"である場合、待ち時間に制限はありません。"
542533
543- #: ../../library/concurrent.futures.rst:425
534+ #: ../../library/concurrent.futures.rst:419
544535msgid ":pep:`3148` -- futures - execute computations asynchronously"
545536msgstr ":pep:`3148` -- futures - execute computations asynchronously"
546537
547- #: ../../library/concurrent.futures.rst:425
538+ #: ../../library/concurrent.futures.rst:419
548539msgid ""
549540"The proposal which described this feature for inclusion in the Python "
550541"standard library."
551542msgstr "この機能を Python 標準ライブラリに含めることを述べた提案です。"
552543
553- #: ../../library/concurrent.futures.rst:430
544+ #: ../../library/concurrent.futures.rst:424
554545msgid "Exception classes"
555546msgstr "例外クラス"
556547
557- #: ../../library/concurrent.futures.rst:436
548+ #: ../../library/concurrent.futures.rst:430
558549msgid "Raised when a future is cancelled."
559550msgstr "future がキャンセルされたときに送出されます。"
560551
561- #: ../../library/concurrent.futures.rst:440
552+ #: ../../library/concurrent.futures.rst:434
562553msgid "Raised when a future operation exceeds the given timeout."
563554msgstr "future の操作が与えられたタイムアウトを超過したときに送出されます。"
564555
565- #: ../../library/concurrent.futures.rst:446
556+ #: ../../library/concurrent.futures.rst:440
566557msgid ""
567558"Derived from :exc:`RuntimeError`, this exception class is raised when one of"
568559" the workers of a :class:`ProcessPoolExecutor` has terminated in a non-clean"
0 commit comments