@@ -19,7 +19,7 @@ msgid ""
19
19
msgstr ""
20
20
"Project-Id-Version :Python 3.8\n "
21
21
"Report-Msgid-Bugs-To :\n "
22
- "POT-Creation-Date :2019-09-01 14:24 +0000\n "
22
+ "POT-Creation-Date :2019-09-12 11:28 +0000\n "
23
23
"PO-Revision-Date :2017-02-16 17:33+0000\n "
24
24
"Last-Translator :tomo, 2019\n "
25
25
"Language-Team :Japanese (https://www.transifex.com/python-doc/teams/5390/ja/)\n "
@@ -784,19 +784,23 @@ msgstr ""
784
784
785
785
#: ../../c-api/buffer.rst:486
786
786
msgid ""
787
+ "Copy contiguous *len* bytes from *buf* to *view*. *fort* can be ``'C'`` or "
788
+ "``'F'`` (for C-style or Fortran-style ordering). ``0`` is returned on "
789
+ "success, ``-1`` on error."
790
+ msgstr ""
791
+
792
+ #: ../../c-api/buffer.rst:493
793
+ msgid ""
787
794
"Copy *len* bytes from *src* to its contiguous representation in *buf*. "
788
- "*order* can be ``'C'`` or ``'F'`` (for C-style or Fortran-style ordering). "
789
- "``0`` is returned on success, ``-1`` on error."
795
+ "*order* can be ``'C'`` or ``'F'``or ``'A'`` (for C-style or Fortran-style "
796
+ "ordering or either one). ``0`` is returned on success, ``-1`` on error."
790
797
msgstr ""
791
- "*src* から *len* バイトを連続表現で *buf* 上にコピーします。\n"
792
- "*order* は ``'C'`` または ``'F'`` (C スタイルまたは Fortran スタイルの順序) が指定できます。\n"
793
- "成功したら ``0`` が返り、エラーなら ``-1`` が返ります。"
794
798
795
- #: ../../c-api/buffer.rst:490
799
+ #: ../../c-api/buffer.rst:497
796
800
msgid "This function fails if *len* != *src->len*."
797
801
msgstr "*len* != *src->len* の場合、この関数は失敗します。"
798
802
799
- #: ../../c-api/buffer.rst:495
803
+ #: ../../c-api/buffer.rst:502
800
804
msgid ""
801
805
"Fill the *strides* array with byte-strides of a :term:`contiguous` (C-style "
802
806
"if *order* is ``'C'`` or Fortran-style if *order* is ``'F'``) array of the "
@@ -806,7 +810,7 @@ msgstr ""
806
810
"<contiguous>` (*order* が ``'C'`` なら C-style 、 ``'F'`` なら Fortran-style の) "
807
811
"多次元配列として埋める。"
808
812
809
- #: ../../c-api/buffer.rst:502
813
+ #: ../../c-api/buffer.rst:509
810
814
msgid ""
811
815
"Handle buffer requests for an exporter that wants to expose *buf* of size "
812
816
"*len* with writability set according to *readonly*. *buf* is interpreted as "
@@ -815,7 +819,7 @@ msgstr ""
815
819
"サイズが *len* の *buf* を *readonly* に従った書き込み可/不可の設定で公開するバッファリクエストを処理します。\n"
816
820
"*buf* は符号無しバイトの列として解釈されます。"
817
821
818
- #: ../../c-api/buffer.rst:506
822
+ #: ../../c-api/buffer.rst:513
819
823
msgid ""
820
824
"The *flags* argument indicates the request type. This function always fills "
821
825
"in *view* as specified by flags, unless *buf* has been designated as read-"
@@ -824,7 +828,7 @@ msgstr ""
824
828
"*flags* 引数はリクエストのタイプを示します。\n"
825
829
"この関数は、 *buf* が読み出し専用と指定されていて、 *flags* に :c:macro:`PyBUF_WRITABLE` が設定されていない限り、常にフラグに指定された通りに *view* を埋めます。"
826
830
827
- #: ../../c-api/buffer.rst:510
831
+ #: ../../c-api/buffer.rst:517
828
832
msgid ""
829
833
"On success, set :c:member:`view->obj` to a new reference to *exporter* and "
830
834
"return 0. Otherwise, raise :c:data:`PyExc_BufferError`, set "
@@ -833,7 +837,7 @@ msgstr ""
833
837
"成功したときは、 :c:member:`view->obj` に *exporter* への新しい参照を設定し、 0 を返します。\n"
834
838
"失敗したときは、 :c:data:`PyExc_BufferError` を送出し、 :c:member:`view->obj` に *NULL* を設定し、 ``-1`` を返します;"
835
839
836
- #: ../../c-api/buffer.rst:514
840
+ #: ../../c-api/buffer.rst:521
837
841
msgid ""
838
842
"If this function is used as part of a :ref:`getbufferproc <buffer-structs>`,"
839
843
" *exporter* MUST be set to the exporting object and *flags* must be passed "