44# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
55#
66# Translators:
7- # Nozomu Kaneko <nozom.kaneko@gmail.com>, 2017
8- # E. Kawashima, 2017
9- # 秘湯 <xwhhsprings@gmail.com>, 2017
10- # Ikuru K <kanumaiku@gmail.com>, 2017
11- # Yusuke Miyazaki <miyazaki.dev@gmail.com>, 2017
12- # Osamu NAKAMURA, 2017
13- # Inada Naoki <songofacandy@gmail.com>, 2017
14- # Arihiro TAKASE, 2017
157# tomo, 2020
168#
179#, fuzzy
1810msgid ""
1911msgstr ""
20- "Project-Id-Version :Python 3.9 \n "
12+ "Project-Id-Version :Python 3.8 \n "
2113"Report-Msgid-Bugs-To :\n "
22- "POT-Creation-Date :2020-05-31 09:25 +0000\n "
23- "PO-Revision-Date :2017-02-16 17:33 +0000\n "
14+ "POT-Creation-Date :2020-02-09 12:40 +0000\n "
15+ "PO-Revision-Date :2020-05-30 11:47 +0000\n "
2416"Last-Translator :tomo, 2020\n "
2517"Language-Team :Japanese (https://www.transifex.com/python-doc/teams/5390/ja/)\n "
2618"MIME-Version :1.0\n "
@@ -759,10 +751,12 @@ msgstr ":c:func:`PyObject_GetBuffer` を通して取得していないバッフ
759751#: ../../c-api/buffer.rst:467
760752msgid ""
761753"Return the implied :c:data:`~Py_buffer.itemsize` from "
762- ":c:data:`~Py_buffer.format`.On error, raise an exception and return -1 ."
754+ ":c:data:`~Py_buffer.format`.This function is not yet implemented ."
763755msgstr ""
756+ ":c:data:`~Py_buffer.itemsize` の値を :c:data:`~PyBuffer.format` から計算して返します。\n"
757+ "この関数はまだ実装されていません。"
764758
765- #: ../../c-api/buffer.rst:475
759+ #: ../../c-api/buffer.rst:473
766760msgid ""
767761"Return ``1`` if the memory defined by the *view* is C-style (*order* is "
768762"``'C'``) or Fortran-style (*order* is ``'F'``) :term:`contiguous` or either "
@@ -773,22 +767,22 @@ msgstr ""
773767"それ以外の場合は ``0`` を返します。\n"
774768"この関数は常に成功します。"
775769
776- #: ../../c-api/buffer.rst:482
770+ #: ../../c-api/buffer.rst:480
777771msgid ""
778772"Get the memory area pointed to by the *indices* inside the given *view*. "
779773"*indices* must point to an array of ``view->ndim`` indices."
780774msgstr ""
781775"与えられた *view* 内にある *indices* が指すメモリ領域を取得します。\n"
782776"*indices* は ``view->ndim`` 個のインデックスからなる配列を指していなければなりません。"
783777
784- #: ../../c-api/buffer.rst:488
778+ #: ../../c-api/buffer.rst:486
785779msgid ""
786780"Copy contiguous *len* bytes from *buf* to *view*. *fort* can be ``'C'`` or "
787781"``'F'`` (for C-style or Fortran-style ordering). ``0`` is returned on "
788782"success, ``-1`` on error."
789783msgstr ""
790784
791- #: ../../c-api/buffer.rst:495
785+ #: ../../c-api/buffer.rst:493
792786msgid ""
793787"Copy *len* bytes from *src* to its contiguous representation in *buf*. "
794788"*order* can be ``'C'`` or ``'F'`` or ``'A'`` (for C-style or Fortran-style "
@@ -798,11 +792,11 @@ msgstr ""
798792"*order* は ``'C'`` または ``'F'`` または ``'A'`` (C スタイル順序または Fortran スタイル順序またはそれ以外) が指定できます。\n"
799793"成功したら ``0`` が返り、エラーなら ``-1`` が返ります。"
800794
801- #: ../../c-api/buffer.rst:499
795+ #: ../../c-api/buffer.rst:497
802796msgid "This function fails if *len* != *src->len*."
803797msgstr "*len* != *src->len* の場合、この関数は失敗します。"
804798
805- #: ../../c-api/buffer.rst:504
799+ #: ../../c-api/buffer.rst:502
806800msgid ""
807801"Fill the *strides* array with byte-strides of a :term:`contiguous` (C-style "
808802"if *order* is ``'C'`` or Fortran-style if *order* is ``'F'``) array of the "
@@ -812,7 +806,7 @@ msgstr ""
812806"<contiguous>` (*order* が ``'C'`` なら C-style 、 ``'F'`` なら Fortran-style の) "
813807"多次元配列として埋める。"
814808
815- #: ../../c-api/buffer.rst:511
809+ #: ../../c-api/buffer.rst:509
816810msgid ""
817811"Handle buffer requests for an exporter that wants to expose *buf* of size "
818812"*len* with writability set according to *readonly*. *buf* is interpreted as "
@@ -821,7 +815,7 @@ msgstr ""
821815"サイズが *len* の *buf* を *readonly* に従った書き込み可/不可の設定で公開するバッファリクエストを処理します。\n"
822816"*buf* は符号無しバイトの列として解釈されます。"
823817
824- #: ../../c-api/buffer.rst:515
818+ #: ../../c-api/buffer.rst:513
825819msgid ""
826820"The *flags* argument indicates the request type. This function always fills "
827821"in *view* as specified by flags, unless *buf* has been designated as read-"
@@ -830,7 +824,7 @@ msgstr ""
830824"*flags* 引数はリクエストのタイプを示します。\n"
831825"この関数は、 *buf* が読み出し専用と指定されていて、 *flags* に :c:macro:`PyBUF_WRITABLE` が設定されていない限り、常にフラグに指定された通りに *view* を埋めます。"
832826
833- #: ../../c-api/buffer.rst:519
827+ #: ../../c-api/buffer.rst:517
834828msgid ""
835829"On success, set :c:member:`view->obj` to a new reference to *exporter* and "
836830"return 0. Otherwise, raise :c:data:`PyExc_BufferError`, set "
@@ -839,7 +833,7 @@ msgstr ""
839833"成功したときは、 :c:member:`view->obj` に *exporter* への新しい参照を設定し、 0 を返します。\n"
840834"失敗したときは、 :c:data:`PyExc_BufferError` を送出し、 :c:member:`view->obj` に ``NULL`` を設定し、 ``-1`` を返します;"
841835
842- #: ../../c-api/buffer.rst:523
836+ #: ../../c-api/buffer.rst:521
843837msgid ""
844838"If this function is used as part of a :ref:`getbufferproc <buffer-structs>`,"
845839" *exporter* MUST be set to the exporting object and *flags* must be passed "