X Tutup
# SOME DESCRIPTIVE TITLE. # Copyright (C) 2001-2024, Python Software Foundation # This file is distributed under the same license as the Python package. # FIRST AUTHOR , YEAR. # # Translators: # tomo, 2021 # mollinaca, 2021 # #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.12\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-05-04 01:27+0000\n" "PO-Revision-Date: 2021-07-29 13:25+0000\n" "Last-Translator: mollinaca, 2021\n" "Language-Team: Japanese (https://app.transifex.com/python-doc/teams/5390/" "ja/)\n" "Language: ja\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" #: ../../c-api/objbuffer.rst:4 msgid "Old Buffer Protocol" msgstr "古いバッファプロトコル" #: ../../c-api/objbuffer.rst:8 msgid "" "These functions were part of the \"old buffer protocol\" API in Python 2. In " "Python 3, this protocol doesn't exist anymore but the functions are still " "exposed to ease porting 2.x code. They act as a compatibility wrapper " "around the :ref:`new buffer protocol `, but they don't give " "you control over the lifetime of the resources acquired when a buffer is " "exported." msgstr "" "これらの関数は、 Python 2 の「古いバッファプロトコル」 API の一部です。 " "Python 3 では、もうこのプロトコルは存在しませんが、 2.x のコードを移植しやす" "いように関数は公開されています。 :ref:`新しいバッファプロトコル " "` と互換性のあるラッパー関数のように振る舞いますが、バッファが" "エクスポートされるときに取得されるリソースの生存期間を管理することはできませ" "ん。" #: ../../c-api/objbuffer.rst:15 msgid "" "Therefore, it is recommended that you call :c:func:`PyObject_GetBuffer` (or " "the ``y*`` or ``w*`` :ref:`format codes ` with the :c:func:" "`PyArg_ParseTuple` family of functions) to get a buffer view over an object, " "and :c:func:`PyBuffer_Release` when the buffer view can be released." msgstr "" "従って、あるオブジェクトのバッファビューを取得するために、 :c:func:" "`PyObject_GetBuffer` (もしくは ``y*`` および ``w*`` :ref:`フォーマットコー" "ド ` で :c:func:`PyArg_ParseTuple` やその仲間) を呼び出し、バッ" "ファビューを解放するときには :c:func:`PyBuffer_Release` を呼び出します。" #: ../../c-api/objbuffer.rst:23 msgid "" "Returns a pointer to a read-only memory location usable as character-based " "input. The *obj* argument must support the single-segment character buffer " "interface. On success, returns ``0``, sets *buffer* to the memory location " "and *buffer_len* to the buffer length. Returns ``-1`` and sets a :exc:" "`TypeError` on error." msgstr "" "文字ベースの入力として使える読み出し専用メモリ上の位置へのポインタを返しま" "す。 *obj* 引数は単一セグメントからなる文字バッファインターフェースをサポート" "していなければなりません。成功すると ``0`` を返し、 *buffer* をメモリの位置" "に、 *buffer_len* をバッファの長さに設定します。エラーの際には ``-1`` を返" "し、 :exc:`TypeError` をセットします。" #: ../../c-api/objbuffer.rst:32 msgid "" "Returns a pointer to a read-only memory location containing arbitrary data. " "The *obj* argument must support the single-segment readable buffer " "interface. On success, returns ``0``, sets *buffer* to the memory location " "and *buffer_len* to the buffer length. Returns ``-1`` and sets a :exc:" "`TypeError` on error." msgstr "" "任意のデータを収めた読み出し専用のメモリ上の位置へのポインタを返します。 " "*obj* 引数は単一セグメントからなる読み出し可能バッファインターフェースをサ" "ポートしていなければなりません。成功すると ``0`` を返し、 *buffer* をメモリの" "位置に、 *buffer_len* をバッファの長さに設定します。エラーの際には ``-1`` " "を返し、 :exc:`TypeError` をセットします。" #: ../../c-api/objbuffer.rst:41 msgid "" "Returns ``1`` if *o* supports the single-segment readable buffer interface. " "Otherwise returns ``0``. This function always succeeds." msgstr "" "*o* が単一セグメントからなる読み出し可能バッファインターフェースをサポートし" "ている場合に ``1`` を返します。それ以外の場合には ``0`` を返します。\n" "この関数は常に成功します。" #: ../../c-api/objbuffer.rst:44 msgid "" "Note that this function tries to get and release a buffer, and exceptions " "which occur while calling corresponding functions will get suppressed. To " "get error reporting use :c:func:`PyObject_GetBuffer()` instead." msgstr "" "この関数は試しにバッファの取得と解放を行い、それぞれ対応する関数の呼び出し中" "に起こる例外は抑制されることに注意してください。\n" "エラーを報告させるには、 :c:func:`PyObject_GetBuffer()` を代わりに使ってくだ" "さい。" #: ../../c-api/objbuffer.rst:51 msgid "" "Returns a pointer to a writable memory location. The *obj* argument must " "support the single-segment, character buffer interface. On success, returns " "``0``, sets *buffer* to the memory location and *buffer_len* to the buffer " "length. Returns ``-1`` and sets a :exc:`TypeError` on error." msgstr "" "書き込み可能なメモリ上の位置へのポインタを返します。 *obj* 引数は単一セグメ" "ントからなる文字バッファインターフェースをサポートしていなければなりません。" "成功すると ``0`` を返し、 *buffer* をメモリの位置に、 *buffer_len* をバッファ" "の長さに設定します。エラーの際には ``-1`` を返し、 :exc:`TypeError` をセット" "します。"
X Tutup