Skip to content

Commit d5be360

Browse files
author
Autobuild bot on TravisCI
committed
[skip ci] Update .po files
1 parent 6f1f54c commit d5be360

File tree

2 files changed

+3781
-3762
lines changed

2 files changed

+3781
-3762
lines changed

c-api/type.po

Lines changed: 16 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ msgid ""
1515
msgstr ""
1616
"Project-Id-Version: Python 3.7\n"
1717
"Report-Msgid-Bugs-To: \n"
18-
"POT-Creation-Date: 2018-06-30 05:56+0900\n"
18+
"POT-Creation-Date: 2018-11-30 09:52+0900\n"
1919
"PO-Revision-Date: 2017-02-16 17:39+0000\n"
2020
"Last-Translator: Arihiro TAKASE, 2017\n"
2121
"Language-Team: Japanese (https://www.transifex.com/python-doc/teams/5390/ja/)\n"
@@ -69,7 +69,11 @@ msgstr ""
6969
"を定義して使うことを想定しています。それぞれのフラグはpythonの異なるリリースで安定していることが保証されていますが、 "
7070
":c:member:`~PyTypeObject.tp_flags` 自体は限定されたAPIの一部ではありません。"
7171

72-
#: ../../c-api/type.rst:50
72+
#: ../../c-api/type.rst:47
73+
msgid "The return type is now ``unsigned long`` rather than ``long``."
74+
msgstr ""
75+
76+
#: ../../c-api/type.rst:53
7377
msgid ""
7478
"Invalidate the internal lookup cache for the type and all of its subtypes. "
7579
"This function must be called after any manual modification of the attributes"
@@ -78,25 +82,25 @@ msgstr ""
7882
"内部の検索キャッシュを、その type とすべてのサブタイプに対して無効にします。この関数は type "
7983
"の属性や基底クラス列を変更したあとに手動で呼び出さなければなりません。"
8084

81-
#: ../../c-api/type.rst:57
85+
#: ../../c-api/type.rst:60
8286
msgid ""
8387
"Return true if the type object *o* sets the feature *feature*. Type "
8488
"features are denoted by single bit flags."
8589
msgstr "型オブジェクト *o* に、型機能 *feature* が設定されている場合に真を返します。型機能は各々単一ビットのフラグで表されます。"
8690

87-
#: ../../c-api/type.rst:63
91+
#: ../../c-api/type.rst:66
8892
msgid ""
8993
"Return true if the type object includes support for the cycle detector; this"
9094
" tests the type flag :const:`Py_TPFLAGS_HAVE_GC`."
9195
msgstr ""
9296
"型オブジェクトが *o* が循環参照検出をサポートしている場合に真を返します; この関数は型機能フラグ "
9397
":const:`Py_TPFLAGS_HAVE_GC` の設定状態をチェックします。"
9498

95-
#: ../../c-api/type.rst:69
99+
#: ../../c-api/type.rst:72
96100
msgid "Return true if *a* is a subtype of *b*."
97101
msgstr "*a* が *b* のサブタイプの場合に真を返します。"
98102

99-
#: ../../c-api/type.rst:71
103+
#: ../../c-api/type.rst:74
100104
msgid ""
101105
"This function only checks for actual subtypes, which means that "
102106
":meth:`~class.__subclasscheck__` is not called on *b*. Call "
@@ -107,7 +111,7 @@ msgstr ""
107111
"に対し呼ばれません。 :func:`issubclass` と同じチェックをするには :c:func:`PyObject_IsSubclass` "
108112
"を呼んでください。"
109113

110-
#: ../../c-api/type.rst:79
114+
#: ../../c-api/type.rst:82
111115
msgid ""
112116
"Generic handler for the :c:member:`~PyTypeObject.tp_alloc` slot of a type "
113117
"object. Use Python's default memory allocation mechanism to allocate a new "
@@ -116,7 +120,7 @@ msgstr ""
116120
"型オブジェクトの :c:member:`~PyTypeObject.tp_alloc` に対するジェネリックハンドラです。 Python "
117121
"のデフォルトのメモリアロケートメカニズムを使って新しいインスタンスをアロケートし、すべての内容を *NULL* で初期化します。"
118122

119-
#: ../../c-api/type.rst:85
123+
#: ../../c-api/type.rst:88
120124
msgid ""
121125
"Generic handler for the :c:member:`~PyTypeObject.tp_new` slot of a type "
122126
"object. Create a new instance using the type's "
@@ -125,7 +129,7 @@ msgstr ""
125129
"型オブジェクトの :c:member:`~PyTypeObject.tp_new` に対するジェネリックハンドラです。型の "
126130
":c:member:`~PyTypeObject.tp_alloc` スロットを使って新しいインスタンスを作成します。"
127131

128-
#: ../../c-api/type.rst:90
132+
#: ../../c-api/type.rst:93
129133
msgid ""
130134
"Finalize a type object. This should be called on all type objects to finish"
131135
" their initialization. This function is responsible for adding inherited "
@@ -135,13 +139,13 @@ msgstr ""
135139
"型オブジェクトのファイナライズを行います。この関数は全てのオブジェクトで初期化を完了するために呼び出されなくてはなりません。この関数は、基底クラス型から継承したスロットを型オブジェクトに追加する役割があります。成功した場合には"
136140
" ``0`` を返し、エラーの場合には ``-1`` を返して例外情報を設定します。"
137141

138-
#: ../../c-api/type.rst:97
142+
#: ../../c-api/type.rst:100
139143
msgid ""
140144
"Creates and returns a heap type object from the *spec* passed to the "
141145
"function."
142146
msgstr "関数引数に与えられた *spec* からヒープタイプのオブジェクトを作って返します。"
143147

144-
#: ../../c-api/type.rst:101
148+
#: ../../c-api/type.rst:104
145149
msgid ""
146150
"Creates and returns a heap type object from the *spec*. In addition to that,"
147151
" the created heap type contains all types contained by the *bases* tuple as "
@@ -151,7 +155,7 @@ msgstr ""
151155
"*spec* からヒープタイプのオブジェクトを生成して返します。加えて、生成されたヒープタイプは *bases* "
152156
"タプルが保持するすべての型を基底の型として保持します。他のヒープ型を基底型として参照できます。"
153157

154-
#: ../../c-api/type.rst:109
158+
#: ../../c-api/type.rst:112
155159
msgid ""
156160
"Return the function pointer stored in the given slot. If the result is "
157161
"*NULL*, this indicates that either the slot is *NULL*, or that the function "

0 commit comments

Comments
 (0)