-
-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathobjbuffer.po
107 lines (99 loc) · 5.93 KB
/
objbuffer.po
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
# SOME DESCRIPTIVE TITLE.
# Copyright (C) 2001-2020, Python Software Foundation
# This file is distributed under the same license as the Python package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
# Translators:
# Arihiro TAKASE, 2017
# tomo, 2019
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: Python 3.8\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-02-09 12:40+0000\n"
"PO-Revision-Date: 2017-02-16 17:38+0000\n"
"Last-Translator: tomo, 2019\n"
"Language-Team: Japanese (https://www.transifex.com/python-doc/teams/5390/ja/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: ja\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 <bufferobjects>`, 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:`新しいバッファプロトコル <bufferobjects>` "
"と互換性のあるラッパー関数のように振る舞いますが、バッファがエクスポートされるときに取得されるリソースの生存期間を管理することはできません。"
#: ../../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 <arg-parsing>` 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:`フォーマットコード <arg-parsing>` で :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` "
"をセットします。"