@@ -11,7 +11,7 @@ msgid ""
11
11
msgstr ""
12
12
"Project-Id-Version : Python 3.7\n "
13
13
"Report-Msgid-Bugs-To : \n "
14
- "POT-Creation-Date : 2019-10-31 03:57 +0000\n "
14
+ "POT-Creation-Date : 2019-11-21 04:10 +0000\n "
15
15
"PO-Revision-Date : 2019-09-01 03:39+0000\n "
16
16
"Last-Translator : tomo, 2019\n "
17
17
"Language-Team : Japanese (https://www.transifex.com/python-doc/teams/5390/ja/)\n "
@@ -38,28 +38,25 @@ msgid ""
38
38
"Return ``1`` if the object provides mapping protocol or supports slicing, "
39
39
"and ``0`` otherwise. Note that it returns ``1`` for Python classes with a "
40
40
":meth:`__getitem__` method since in general case it is impossible to "
41
- "determine what the type of keys it supports. This function always succeeds."
41
+ "determine what type of keys it supports. This function always succeeds."
42
42
msgstr ""
43
- "オブジェクトがマップ型プロトコルを提供しているか、スライスをサポートしている場合は ``1`` を、そうでない場合は ``0`` を返します。\n"
44
- ":meth:`__getitem__` メソッドを持つ Python クラスについては ``1`` を返すのに注意してください。そうなる理由は、一般的なケースではオブジェクトがどの種類のキーをサポートしているかを判別するのが不可能だからです。\n"
45
- "この関数は常に成功します。"
46
43
47
- #: ../../c-api/mapping.rst:26
44
+ #: ../../c-api/mapping.rst:25
48
45
msgid ""
49
46
"Returns the number of keys in object *o* on success, and ``-1`` on failure. "
50
47
"This is equivalent to the Python expression ``len(o)``."
51
48
msgstr ""
52
49
"成功するとオブジェクト *o* 中のキーの数を返し、失敗すると ``-1`` を返します。これは、Python の式 ``len(o)`` "
53
50
"と同じになります。"
54
51
55
- #: ../../c-api/mapping.rst:32
52
+ #: ../../c-api/mapping.rst:31
56
53
msgid ""
57
54
"Return element of *o* corresponding to the string *key* or ``NULL`` on "
58
55
"failure. This is the equivalent of the Python expression ``o[key]``. See "
59
56
"also :c:func:`PyObject_GetItem`."
60
57
msgstr ""
61
58
62
- #: ../../c-api/mapping.rst:39
59
+ #: ../../c-api/mapping.rst:38
63
60
msgid ""
64
61
"Map the string *key* to the value *v* in object *o*. Returns ``-1`` on "
65
62
"failure. This is the equivalent of the Python statement ``o[key] = v``. See"
@@ -69,7 +66,7 @@ msgstr ""
69
66
"Python の文 ``o[key] = v`` と同じです。\n"
70
67
":c:func:`PyObject_SetItem` も参照してください。"
71
68
72
- #: ../../c-api/mapping.rst:46
69
+ #: ../../c-api/mapping.rst:45
73
70
msgid ""
74
71
"Remove the mapping for the object *key* from the object *o*. Return ``-1`` "
75
72
"on failure. This is equivalent to the Python statement ``del o[key]``. This"
@@ -80,7 +77,7 @@ msgstr ""
80
77
"Python の文 ``del o[key]`` と同じです。\n"
81
78
"この関数は :c:func:`PyObject_DelItem` の別名です。"
82
79
83
- #: ../../c-api/mapping.rst:53
80
+ #: ../../c-api/mapping.rst:52
84
81
msgid ""
85
82
"Remove the mapping for the string *key* from the object *o*. Return ``-1`` "
86
83
"on failure. This is equivalent to the Python statement ``del o[key]``."
@@ -89,7 +86,7 @@ msgstr ""
89
86
"失敗すると ``-1`` を返します。\n"
90
87
"Python の文 ``del o[key]`` と同じです。"
91
88
92
- #: ../../c-api/mapping.rst:59 ../../c-api/mapping.rst:70
89
+ #: ../../c-api/mapping.rst:58 ../../c-api/mapping.rst:69
93
90
msgid ""
94
91 "Return ``1`` if the mapping object has the key *key* and ``0`` otherwise. "
95
92
"This is equivalent to the Python expression ``key in o``. This function "
@@ -98,7 +95,7 @@ msgstr ""
98
95
"マップ型オブジェクトがキー *key* を持つ場合に ``1`` を返し、そうでないときには ``0`` を返します。これは、Python の式 "
99
96
"``key in o`` と等価です。この関数呼び出しは常に成功します。"
100
97
101
- #: ../../c-api/mapping.rst:63
98
+ #: ../../c-api/mapping.rst:62
102
99
msgid ""
103
100
"Note that exceptions which occur while calling the :meth:`__getitem__` "
104
101
"method will get suppressed. To get error reporting use "
@@ -107,7 +104,7 @@ msgstr ""
107
104
":meth:`__getitem__` メソッドの呼び出し中に起こる例外は抑制されることに注意してください。\n"
108
105
"エラーを報告させるには、代わりに :c:func:`PyObject_GetItem()` を使ってください。"
109
106
110
- #: ../../c-api/mapping.rst:74
107
+ #: ../../c-api/mapping.rst:73
111
108
msgid ""
112
109
"Note that exceptions which occur while calling the :meth:`__getitem__` "
113
110
"method and creating a temporary string object will get suppressed. To get "
@@ -116,24 +113,24 @@ msgstr ""
116
113
":meth:`__getitem__` メソッドの呼び出し中や、一時的な文字列オブジェクトの作成中に起こる例外は抑制されることに注意してください。\n"
117
114
"エラーを報告させるには、代わりに :c:func:`PyMapping_GetItemString()` を使ってください。"
118
115
119
- #: ../../c-api/mapping.rst:81
116
+ #: ../../c-api/mapping.rst:80
120
117
msgid ""
121
118
"On success, return a list of the keys in object *o*. On failure, return "
122
119
"``NULL``."
123
120
msgstr ""
124
121
125
- #: ../../c-api/mapping.rst:84 ../../c-api/mapping.rst:93
126
- #: ../../c-api/mapping.rst:102
122
+ #: ../../c-api/mapping.rst:83 ../../c-api/mapping.rst:92
123
+ #: ../../c-api/mapping.rst:101
127
124
msgid "Previously, the function returned a list or a tuple."
128
125
msgstr "以前は、関数はリストもしくはタプルを返していました。"
129
126
130
- #: ../../c-api/mapping.rst:90
127
+ #: ../../c-api/mapping.rst:89
131
128
msgid ""
132
129
"On success, return a list of the values in object *o*. On failure, return "
133
130
"``NULL``."
134
131
msgstr ""
135
132
136
- #: ../../c-api/mapping.rst:99
133
+ #: ../../c-api/mapping.rst:98
137
134
msgid ""
138
135
"On success, return a list of the items in object *o*, where each item is a "
139
136
"tuple containing a key-value pair. On failure, return ``NULL``."
0 commit comments