@@ -180,7 +180,8 @@ msgid ""
180180"resulting C string may contain embedded NUL bytes. Unicode objects are "
181181"converted to C strings using ``'utf-8'`` encoding."
182182msgstr ""
183- "このフォーマットは Unicode オブジェクトと :term:`bytes-like object` を受け付けて、呼び出し元から渡された :c:type:`Py_buffer` 構造体に値を格納します。結果の C 文字列は NUL バイトを含むかもしれません。\n"
183+ "このフォーマットは Unicode オブジェクトと bytes-like object を受け付けて、呼び出し元から渡された :c:type:`Py_buffer` 構造体に値を格納します。\n"
184+ "結果の C 文字列は NUL バイトを含むかもしれません。\n"
184185"Unicode オブジェクトは ``'utf-8'`` エンコーディングで C 文字列に変換されます。"
185186
186187#: ../../c-api/arg.rst:98
@@ -272,8 +273,8 @@ msgid ""
272273"This variant on ``s*`` doesn't accept Unicode objects, only bytes-like "
273274"objects. **This is the recommended way to accept binary data.**"
274275msgstr ""
275- "``s*`` の変形で、 Unicode オブジェクトを受け付けず、 :term:` bytes-like object` \\ s のみを受け付けます。"
276- " **バイナリデータを受け付けるならば、このフォーマットを推奨します 。**"
276+ "``s*`` の変形で、 Unicode オブジェクトを受け付けず、 bytes-like object のみを受け付けます。\n "
277+ "**バイナリデータを受け付ける目的には、このフォーマットを使うことを推奨します 。**"
277278
278279#: ../../c-api/arg.rst:129
279280msgid "``y#`` (read-only :term:`bytes-like object`) [const char \\ *, int]"
@@ -283,8 +284,7 @@ msgstr "``y#`` (読み取り専用の :term:`bytes-like object`) [const char \\*
283284msgid ""
284285"This variant on ``s#`` doesn't accept Unicode objects, only bytes-like "
285286"objects."
286- msgstr ""
287- "``s#`` の変形で、 Unicode オブジェクトを受け付けず、:term:`bytes-like object`\\ s だけを受け付けます。"
287+ msgstr "``s#`` の変形で、 Unicode オブジェクトを受け付けず、bytes-like object だけを受け付けます。"
288288
289289#: ../../c-api/arg.rst:134
290290msgid "``S`` (:class:`bytes`) [PyBytesObject \\ *]"
@@ -519,9 +519,8 @@ msgid ""
519519msgstr ""
520520"*\\ *buffer* が非 *NULL* のポインタ (すでにメモリ確保済みのバッファ) を指している場合、 "
521521":c:func:`PyArg_ParseTuple` はこのメモリ位置をバッファとして用い、 *\\ *buffer_length* "
522- "の初期値をバッファサイズとして用います。 :c:func:`PyArg_ParseTuple` "
523- "は次にエンコード済みのデータをバッファにコピーして、NUL で終端します。バッファの大きさが足りなければ :exc:`ValueError` "
524- "がセットされます。"
522+ "の初期値をバッファサイズとして用います。 PyArg_ParseTuple は次にエンコード済みのデータをバッファにコピーして、NUL "
523+ "で終端します。バッファの大きさが足りなければ :exc:`ValueError` がセットされます。"
525524
526525#: ../../c-api/arg.rst:228
527526msgid ""
@@ -632,7 +631,7 @@ msgstr "``L`` (:class:`int`) [long long]"
632631
633632#: ../../c-api/arg.rst:269
634633msgid "Convert a Python integer to a C :c:type:`long long`."
635- msgstr "PythonのintをC :c:type:`long long`へ変換する。"
634+ msgstr "PythonのintをC :c:type:`long long` へ変換する。"
636635
637636#: ../../c-api/arg.rst:273 ../../c-api/arg.rst:598
638637msgid "``K`` (:class:`int`) [unsigned long long]"
@@ -642,7 +641,7 @@ msgstr "``K`` (:class:`int`) [unsigned long long]"
642641msgid ""
643642"Convert a Python integer to a C :c:type:`unsigned long long` without "
644643"overflow checking."
645- msgstr "PythonのintをC :c:type:`unsigned long long`へオーバーフローの確認をせず変換する"
644+ msgstr "PythonのintをC :c:type:`unsigned long long` へオーバーフローの確認をせず変換する"
646645
647646#: ../../c-api/arg.rst:276 ../../c-api/arg.rst:601
648647msgid "``n`` (:class:`int`) [Py_ssize_t]"
@@ -1222,11 +1221,11 @@ msgstr "C の :c:type:`unsigned long` を Python の整数オブジェクトに
12221221
12231222#: ../../c-api/arg.rst:595
12241223msgid "Convert a C :c:type:`long long` to a Python integer object."
1225- msgstr "C :c:type:`long long`をPythonのintオブジェクトへ変換する。"
1224+ msgstr "C :c:type:`long long` をPythonのintオブジェクトへ変換する。"
12261225
12271226#: ../../c-api/arg.rst:598
12281227msgid "Convert a C :c:type:`unsigned long long` to a Python integer object."
1229- msgstr "C :c:type:`unsigned long long`をPythonのintオブジェクトへ変換する。"
1228+ msgstr "C :c:type:`unsigned long long` をPythonのintオブジェクトへ変換する。"
12301229
12311230#: ../../c-api/arg.rst:601
12321231msgid "Convert a C :c:type:`Py_ssize_t` to a Python integer."
@@ -1277,8 +1276,8 @@ msgid ""
12771276msgstr ""
12781277"Python オブジェクトを手を加えずに渡します (ただし、参照カウントは 1 インクリメントします)。渡したオブジェクトが *NULL* "
12791278"ポインタの場合、この引数を生成するのに使った何らかの呼び出しがエラーになったのが原因であると仮定して、例外をセットします。従ってこのとき "
1280- ":c:func:`Py_BuildValue` は *NULL* を返しますが :c:func:`Py_BuildValue` "
1281- "自体は例外を送出しません。例外をまだ送出していなければ :exc:`SystemError` をセットします。"
1279+ ":c:func:`Py_BuildValue` は *NULL* を返しますが例外は送出しません。例外をまだ送出していなければ "
1280+ ":exc:`SystemError` をセットします。"
12821281
12831282#: ../../c-api/arg.rst:629
12841283msgid "``S`` (object) [PyObject \\ *]"
0 commit comments