@@ -11,7 +11,7 @@ msgid ""
1111msgstr ""
1212"Project-Id-Version :Python 3.8\n "
1313"Report-Msgid-Bugs-To :\n "
14- "POT-Creation-Date :2020-02-09 12:40 +0000\n "
14+ "POT-Creation-Date :2020-08-14 14:53 +0000\n "
1515"PO-Revision-Date :2020-05-30 12:11+0000\n "
1616"Last-Translator :tomo, 2020\n "
1717"Language-Team :Japanese (https://www.transifex.com/python-doc/teams/5390/ja/)\n "
@@ -123,7 +123,7 @@ msgstr ""
123123" 以降)。"
124124
125125#: ../../library/tempfile.rst:66 ../../library/tempfile.rst:91
126- #: ../../library/tempfile.rst:187
126+ #: ../../library/tempfile.rst:186
127127msgid ""
128128"Raises an :ref:`auditing event <auditing>` ``tempfile.mkstemp`` with "
129129"argument ``fullpath``."
@@ -221,7 +221,7 @@ msgid ""
221221"method."
222222msgstr ":func:`cleanup` メソッドを呼んでディレクトリを明示的に片付けることができます。"
223223
224- #: ../../library/tempfile.rst:138 ../../library/tempfile.rst:213
224+ #: ../../library/tempfile.rst:138 ../../library/tempfile.rst:212
225225msgid ""
226226"Raises an :ref:`auditing event <auditing>` ``tempfile.mkdtemp`` with "
227227"argument ``fullpath``."
@@ -302,13 +302,11 @@ msgstr ""
302302
303303#: ../../library/tempfile.rst:178
304304msgid ""
305- "If *text* is specified, it indicates whether to open the file inbinary mode"
306- " (the default)or text mode. On some platforms, this makes no difference ."
305+ "If *text* is specified and true, the fileis opened intext mode. Otherwise, "
306+ " (the default)the file is opened in binary mode ."
307307msgstr ""
308- "*text* が指定された場合、ファイルをバイナリモード (デフォルト) かテキストモードで開くかを示します。\n"
309- "プラットフォームによってはこの値を設定しても変化はありません。"
310308
311- #: ../../library/tempfile.rst:182
309+ #: ../../library/tempfile.rst:181
312310msgid ""
313311":func:`mkstemp` returns a tuple containing an OS-level handle to an open "
314312"file (as would be returned by :func:`os.open`) and the absolute pathname of "
@@ -317,7 +315,7 @@ msgstr ""
317315":func:`mkstemp` は開かれたファイルを扱うための OS レベルのハンドル (:func:`os.open` が返すものと同じ) "
318316"とファイルの絶対パス名が順番に並んだタプルを返します。"
319317
320- #: ../../library/tempfile.rst:188 ../../library/tempfile.rst:214
318+ #: ../../library/tempfile.rst:187 ../../library/tempfile.rst:213
321319msgid ""
322320"*suffix*, *prefix*, and *dir* may now be supplied in bytes in order to "
323321"obtain a bytes return value. Prior to this, only str was allowed. *suffix* "
@@ -328,11 +326,11 @@ msgstr ""
328326"それ以前は str のみ許されていました。\n"
329327"適切なデフォルト値を使用するよう、*suffix* と *prefix* は ``None`` を受け入れ、デフォルトにするようになりました。"
330328
331- #: ../../library/tempfile.rst:194 ../../library/tempfile.rst:220
329+ #: ../../library/tempfile.rst:193 ../../library/tempfile.rst:219
332330msgid "The *dir* parameter now accepts a :term:`path-like object`."
333331msgstr "*dir* パラメタが :term:`path-like object` を受け付けるようになりました。"
334332
335- #: ../../library/tempfile.rst:200
333+ #: ../../library/tempfile.rst:199
336334msgid ""
337335"Creates a temporary directory in the most secure manner possible. There are "
338336"no race conditions in the directory's creation. The directory is readable, "
@@ -342,96 +340,96 @@ msgstr ""
342340"ディレクトリの生成で競合は発生しません。\n"
343341"ディレクトリを作成したユーザ ID だけが、このディレクトリに対して内容を読み出したり、書き込んだり、検索したりすることができます。"
344342
345- #: ../../library/tempfile.rst:204
343+ #: ../../library/tempfile.rst:203
346344msgid ""
347345"The user of :func:`mkdtemp` is responsible for deleting the temporary "
348346"directory and its contents when done with it."
349347msgstr ":func:`mkdtemp` のユーザは用済みになった時に一時ディレクトリとその中身を削除しなければなりません。"
350348
351- #: ../../library/tempfile.rst:207
349+ #: ../../library/tempfile.rst:206
352350msgid ""
353351"The *prefix*, *suffix*, and *dir* arguments are the same as for "
354352":func:`mkstemp`."
355353msgstr "*prefix*, *suffix*, *dir* 引数は :func:`mkstemp` 関数のものと同じです。"
356354
357- #: ../../library/tempfile.rst:210
355+ #: ../../library/tempfile.rst:209
358356msgid ":func:`mkdtemp` returns the absolute pathname of the new directory."
359357msgstr ":func:`mkdtemp` は新たに生成されたディレクトリの絶対パス名を返します。"
360358
361- #: ../../library/tempfile.rst:226
359+ #: ../../library/tempfile.rst:225
362360msgid ""
363361"Return the name of the directory used for temporary files. This defines the "
364362"default value for the *dir* argument to all functions in this module."
365363msgstr ""
366364"一時ファイルに用いられるディレクトリの名前を返します。\n"
367365"これはモジュール内の全ての関数の *dir* 引数のデフォルト値を定義します。"
368366
369- #: ../../library/tempfile.rst:230
367+ #: ../../library/tempfile.rst:229
370368msgid ""
371369"Python searches a standard list of directories to find one which the calling"
372370" user can create files in. The list is:"
373371msgstr ""
374372"Python は呼び出したユーザがファイルを作ることの出来るディレクトリを検索するのに標準的なリストを使用します。\n"
375373"そのリストは:"
376374
377- #: ../../library/tempfile.rst:233
375+ #: ../../library/tempfile.rst:232
378376msgid "The directory named by the :envvar:`TMPDIR` environment variable."
379377msgstr "環境変数 :envvar:`TMPDIR` で与えられているディレクトリ名。"
380378
381- #: ../../library/tempfile.rst:235
379+ #: ../../library/tempfile.rst:234
382380msgid "The directory named by the :envvar:`TEMP` environment variable."
383381msgstr "環境変数 :envvar:`TEMP` で与えられているディレクトリ名。"
384382
385- #: ../../library/tempfile.rst:237
383+ #: ../../library/tempfile.rst:236
386384msgid "The directory named by the :envvar:`TMP` environment variable."
387385msgstr "環境変数 :envvar:`TMP` で与えられているディレクトリ名。"
388386
389- #: ../../library/tempfile.rst:239
387+ #: ../../library/tempfile.rst:238
390388msgid "A platform-specific location:"
391389msgstr "プラットフォーム依存の場所:"
392390
393- #: ../../library/tempfile.rst:241
391+ #: ../../library/tempfile.rst:240
394392msgid ""
395393"On Windows, the directories :file:`C:\\\\ TEMP`, :file:`C:\\\\ TMP`, "
396394":file:`\\\\ TEMP`, and :file:`\\\\ TMP`, in that order."
397395msgstr ""
398396"Windows ではディレクトリ :file:`C:\\\\ TEMP` 、 :file:`C:\\\\ TMP` 、 :file:`\\\\ TEMP` "
399397"、および :file:`\\\\ TMP` の順。"
400398
401- #: ../../library/tempfile.rst:244
399+ #: ../../library/tempfile.rst:243
402400msgid ""
403401"On all other platforms, the directories :file:`/tmp`, :file:`/var/tmp`, and "
404402":file:`/usr/tmp`, in that order."
405403msgstr ""
406404"その他の全てのプラットフォームでは、 :file:`/tmp` 、 :file:`/var/tmp` 、および :file:`/usr/tmp` の順。"
407405
408- #: ../../library/tempfile.rst:247
406+ #: ../../library/tempfile.rst:246
409407msgid "As a last resort, the current working directory."
410408msgstr "最後の手段として、現在の作業ディレクトリ。"
411409
412- #: ../../library/tempfile.rst:249
410+ #: ../../library/tempfile.rst:248
413411msgid ""
414412"The result of this search is cached, see the description of :data:`tempdir` "
415413"below."
416414msgstr "この検索の結果はキャッシュされます。以下の :data:`tempdir` の記述を参照してください。"
417415
418- #: ../../library/tempfile.rst:254
416+ #: ../../library/tempfile.rst:253
419417msgid "Same as :func:`gettempdir` but the return value is in bytes."
420418msgstr ":func:`gettempdir` と同じですが返り値は bytesです。"
421419
422- #: ../../library/tempfile.rst:260
420+ #: ../../library/tempfile.rst:259
423421msgid ""
424422"Return the filename prefix used to create temporary files. This does not "
425423"contain the directory component."
426424msgstr ""
427425"一時ファイルを生成する際に使われるファイル名の接頭辞を返します。\n"
428426"これにはディレクトリ部は含まれません。"
429427
430- #: ../../library/tempfile.rst:265
428+ #: ../../library/tempfile.rst:264
431429msgid "Same as :func:`gettempprefix` but the return value is in bytes."
432430msgstr ":func:`gettempprefix` と同じですが返り値は bytes です。"
433431
434- #: ../../library/tempfile.rst:269
432+ #: ../../library/tempfile.rst:268
435433msgid ""
436434"The module uses a global variable to store the name of the directory used "
437435"for temporary files returned by :func:`gettempdir`. It can be set directly "
@@ -444,13 +442,13 @@ msgstr ""
444442"このモジュールの全ての関数はディレクトリを指定する *dir* 引数を受け取ります。\n"
445443"この方法が推奨されます。"
446444
447- #: ../../library/tempfile.rst:277
445+ #: ../../library/tempfile.rst:276
448446msgid ""
449447"When set to a value other than ``None``, this variable defines the default "
450448"value for the *dir* argument to the functions defined in this module."
451449msgstr "``None`` 以外の値に設定された場合、このモジュールで定義されている全ての関数の *dir* 引数のデフォルト値として定義されます。"
452450
453- #: ../../library/tempfile.rst:281
451+ #: ../../library/tempfile.rst:280
454452msgid ""
455453"If ``tempdir`` is ``None`` (the default) at any call to any of the above "
456454"functions except :func:`gettempprefix` it is initialized following the "
@@ -459,20 +457,20 @@ msgstr ""
459457"``tempdir`` が (デフォルトの) ``None`` の場合、 :func:`gettempprefix` "
460458"を除く上記のいずれかの関数を呼び出す際は常に :func:`gettempdir` で述べられているアルゴリズムによって初期化されます。"
461459
462- #: ../../library/tempfile.rst:288
460+ #: ../../library/tempfile.rst:287
463461msgid "Examples"
464462msgstr "使用例"
465463
466- #: ../../library/tempfile.rst:290
464+ #: ../../library/tempfile.rst:289
467465msgid ""
468466"Here are some examples of typical usage of the :mod:`tempfile` module::"
469467msgstr ":mod:`tempfile` モジュールの典型的な使用法のいくつかの例を挙げます::"
470468
471- #: ../../library/tempfile.rst:321
469+ #: ../../library/tempfile.rst:320
472470msgid "Deprecated functions and variables"
473471msgstr "非推奨の関数と変数"
474472
475- #: ../../library/tempfile.rst:323
473+ #: ../../library/tempfile.rst:322
476474msgid ""
477475"A historical way to create temporary files was to first generate a file name"
478476" with the :func:`mktemp` function and then create a file using this name. "
@@ -488,11 +486,11 @@ msgstr ""
488486"解決策は二つのステップを同時に行い、ファイルをすぐに作成するというものです。\n"
489487"この方法は :func:`mkstemp` や上述している他の関数で使用されています。"
490488
491- #: ../../library/tempfile.rst:334
489+ #: ../../library/tempfile.rst:333
492490msgid "Use :func:`mkstemp` instead."
493491msgstr "代わりに :func:`mkstemp` を使って下さい。"
494492
495- #: ../../library/tempfile.rst:337
493+ #: ../../library/tempfile.rst:336
496494msgid ""
497495"Return an absolute pathname of a file that did not exist at the time the "
498496"call is made. The *prefix*, *suffix*, and *dir* arguments are similar to "
@@ -502,7 +500,7 @@ msgstr ""
502500"呼び出し時には存在しなかった、ファイルの絶対パス名を返します。\n"
503501"*prefix*、*suffix*、*dir* 引数は :func:`mkstemp` のものと似ていますが、bytes のファイル名、``suffix=None``、そして ``prefix=None`` がサポートされていない点で異なります。"
504502
505- #: ../../library/tempfile.rst:344
503+ #: ../../library/tempfile.rst:343
506504msgid ""
507505"Use of this function may introduce a security hole in your program. By the "
508506"time you get around to doing anything with the file name it returns, someone"