Skip to content

Commit 86c9c30

Browse files
author
Autobuild bot on TravisCI
committed
[skip ci] Update .po files
1 parent 860d80d commit 86c9c30

File tree

3 files changed

+192
-168
lines changed

3 files changed

+192
-168
lines changed

c-api/init.po

Lines changed: 44 additions & 41 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ msgid ""
99
msgstr ""
1010
"Project-Id-Version: Python 2.7\n"
1111
"Report-Msgid-Bugs-To: \n"
12-
"POT-Creation-Date: 2018-01-21 01:52+0900\n"
13-
"PO-Revision-Date: 2018-01-20 20:54+0000\n"
12+
"POT-Creation-Date: 2018-01-25 12:23+0900\n"
13+
"PO-Revision-Date: 2018-01-25 03:28+0000\n"
1414
"Last-Translator: cocoatomo\n"
1515
"Language-Team: Japanese (http://www.transifex.com/python-doc/python-27/language/ja/)\n"
1616
"MIME-Version: 1.0\n"
@@ -1129,166 +1129,169 @@ msgid ""
11291129
"function as its first parameter, and may be any Python object, or *NULL*. "
11301130
"If the profile function needs to maintain state, using a different value for"
11311131
" *obj* for each thread provides a convenient and thread-safe place to store "
1132-
"it. The profile function is called for all monitored events except the "
1133-
"line-number events."
1134-
msgstr "プロファイル関数を *func* に設定します。*obj* パラメタは関数の第一パラメタとして渡され、何らかの Python オブジェクトかまたは *NULL* になります。プロファイル関数がスレッド状態を維持する必要があるなら、各々のスレッドに異なる *obj* を使うことで、状態を記憶しておく便利でスレッドセーフな場所を提供できます。プロファイル関数は、モニタされているイベントのうち、行番号イベントを除く全てのイベントに対して呼び出されます。"
1132+
"it. The profile function is called for all monitored events except "
1133+
":const:`PyTrace_LINE` and :const:`PyTrace_EXCEPTION`."
1134+
msgstr ""
11351135

11361136
#: ../../c-api/init.rst:1066
11371137
msgid ""
11381138
"Set the tracing function to *func*. This is similar to "
11391139
":c:func:`PyEval_SetProfile`, except the tracing function does receive line-"
1140-
"number events."
1141-
msgstr "トレース関数を *func* にセットします。 :c:func:`PyEval_SetProfile` に似ていますが、トレース関数は行番号イベントを受け取る点が違います。"
1140+
"number events and does not receive any event related to C function objects "
1141+
"being called. Any trace function registered using :c:func:`PyEval_SetTrace` "
1142+
"will not receive :const:`PyTrace_C_CALL`, :const:`PyTrace_C_EXCEPTION` or "
1143+
":const:`PyTrace_C_RETURN` as a value for the *what* parameter."
1144+
msgstr ""
11421145

1143-
#: ../../c-api/init.rst:1072
1146+
#: ../../c-api/init.rst:1076
11441147
msgid ""
11451148
"Return a tuple of function call counts. There are constants defined for the"
11461149
" positions within the tuple:"
11471150
msgstr "Return a tuple of function call counts. There are constants defined for the positions within the tuple:"
11481151

1149-
#: ../../c-api/init.rst:1076
1152+
#: ../../c-api/init.rst:1080
11501153
msgid "Name"
11511154
msgstr "名前"
11521155

1153-
#: ../../c-api/init.rst:1076
1156+
#: ../../c-api/init.rst:1080
11541157
msgid "Value"
11551158
msgstr "``値``"
11561159

1157-
#: ../../c-api/init.rst:1078
1160+
#: ../../c-api/init.rst:1082
11581161
msgid ":const:`PCALL_ALL`"
11591162
msgstr ":const:`PCALL_ALL`"
11601163

1161-
#: ../../c-api/init.rst:1078
1164+
#: ../../c-api/init.rst:1082
11621165
msgid "0"
11631166
msgstr "0"
11641167

1165-
#: ../../c-api/init.rst:1080
1168+
#: ../../c-api/init.rst:1084
11661169
msgid ":const:`PCALL_FUNCTION`"
11671170
msgstr ":const:`PCALL_FUNCTION`"
11681171

1169-
#: ../../c-api/init.rst:1080
1172+
#: ../../c-api/init.rst:1084
11701173
msgid "1"
11711174
msgstr "1"
11721175

1173-
#: ../../c-api/init.rst:1082
1176+
#: ../../c-api/init.rst:1086
11741177
msgid ":const:`PCALL_FAST_FUNCTION`"
11751178
msgstr ":const:`PCALL_FAST_FUNCTION`"
11761179

1177-
#: ../../c-api/init.rst:1082
1180+
#: ../../c-api/init.rst:1086
11781181
msgid "2"
11791182
msgstr "2"
11801183

1181-
#: ../../c-api/init.rst:1084
1184+
#: ../../c-api/init.rst:1088
11821185
msgid ":const:`PCALL_FASTER_FUNCTION`"
11831186
msgstr ":const:`PCALL_FASTER_FUNCTION`"
11841187

1185-
#: ../../c-api/init.rst:1084
1188+
#: ../../c-api/init.rst:1088
11861189
msgid "3"
11871190
msgstr "3"
11881191

1189-
#: ../../c-api/init.rst:1086
1192+
#: ../../c-api/init.rst:1090
11901193
msgid ":const:`PCALL_METHOD`"
11911194
msgstr ":const:`PCALL_METHOD`"
11921195

1193-
#: ../../c-api/init.rst:1086
1196+
#: ../../c-api/init.rst:1090
11941197
msgid "4"
11951198
msgstr "4"
11961199

1197-
#: ../../c-api/init.rst:1088
1200+
#: ../../c-api/init.rst:1092
11981201
msgid ":const:`PCALL_BOUND_METHOD`"
11991202
msgstr ":const:`PCALL_BOUND_METHOD`"
12001203

1201-
#: ../../c-api/init.rst:1088
1204+
#: ../../c-api/init.rst:1092
12021205
msgid "5"
12031206
msgstr "5"
12041207

1205-
#: ../../c-api/init.rst:1090
1208+
#: ../../c-api/init.rst:1094
12061209
msgid ":const:`PCALL_CFUNCTION`"
12071210
msgstr ":const:`PCALL_CFUNCTION`"
12081211

1209-
#: ../../c-api/init.rst:1090
1212+
#: ../../c-api/init.rst:1094
12101213
msgid "6"
12111214
msgstr "6"
12121215

1213-
#: ../../c-api/init.rst:1092
1216+
#: ../../c-api/init.rst:1096
12141217
msgid ":const:`PCALL_TYPE`"
12151218
msgstr ":const:`PCALL_TYPE`"
12161219

1217-
#: ../../c-api/init.rst:1092
1220+
#: ../../c-api/init.rst:1096
12181221
msgid "7"
12191222
msgstr "7"
12201223

1221-
#: ../../c-api/init.rst:1094
1224+
#: ../../c-api/init.rst:1098
12221225
msgid ":const:`PCALL_GENERATOR`"
12231226
msgstr ":const:`PCALL_GENERATOR`"
12241227

1225-
#: ../../c-api/init.rst:1094
1228+
#: ../../c-api/init.rst:1098
12261229
msgid "8"
12271230
msgstr "8"
12281231

1229-
#: ../../c-api/init.rst:1096
1232+
#: ../../c-api/init.rst:1100
12301233
msgid ":const:`PCALL_OTHER`"
12311234
msgstr ":const:`PCALL_OTHER`"
12321235

1233-
#: ../../c-api/init.rst:1096
1236+
#: ../../c-api/init.rst:1100
12341237
msgid "9"
12351238
msgstr "9"
12361239

1237-
#: ../../c-api/init.rst:1098
1240+
#: ../../c-api/init.rst:1102
12381241
msgid ":const:`PCALL_POP`"
12391242
msgstr ":const:`PCALL_POP`"
12401243

1241-
#: ../../c-api/init.rst:1098
1244+
#: ../../c-api/init.rst:1102
12421245
msgid "10"
12431246
msgstr "10"
12441247

1245-
#: ../../c-api/init.rst:1101
1248+
#: ../../c-api/init.rst:1105
12461249
msgid ""
12471250
":const:`PCALL_FAST_FUNCTION` means no argument tuple needs to be created. "
12481251
":const:`PCALL_FASTER_FUNCTION` means that the fast-path frame setup code is "
12491252
"used."
12501253
msgstr ":const:`PCALL_FAST_FUNCTION` means no argument tuple needs to be created. :const:`PCALL_FASTER_FUNCTION` means that the fast-path frame setup code is used."
12511254

1252-
#: ../../c-api/init.rst:1104
1255+
#: ../../c-api/init.rst:1108
12531256
msgid ""
12541257
"If there is a method call where the call can be optimized by changing the "
12551258
"argument tuple and calling the function directly, it gets recorded twice."
12561259
msgstr "If there is a method call where the call can be optimized by changing the argument tuple and calling the function directly, it gets recorded twice."
12571260

1258-
#: ../../c-api/init.rst:1108
1261+
#: ../../c-api/init.rst:1112
12591262
msgid ""
12601263
"This function is only present if Python is compiled with "
12611264
":const:`CALL_PROFILE` defined."
12621265
msgstr "This function is only present if Python is compiled with :const:`CALL_PROFILE` defined."
12631266

1264-
#: ../../c-api/init.rst:1114
1267+
#: ../../c-api/init.rst:1118
12651268
msgid "Advanced Debugger Support"
12661269
msgstr "高度なデバッガサポート (advanced debugger support)"
12671270

1268-
#: ../../c-api/init.rst:1119
1271+
#: ../../c-api/init.rst:1123
12691272
msgid ""
12701273
"These functions are only intended to be used by advanced debugging tools."
12711274
msgstr "以下の関数は高度なデバッグツールでの使用のためだけのものです。"
12721275

1273-
#: ../../c-api/init.rst:1124
1276+
#: ../../c-api/init.rst:1128
12741277
msgid ""
12751278
"Return the interpreter state object at the head of the list of all such "
12761279
"objects."
12771280
msgstr "インタプリタ状態オブジェクトからなるリストのうち、先頭にあるものを返します。"
12781281

1279-
#: ../../c-api/init.rst:1131
1282+
#: ../../c-api/init.rst:1135
12801283
msgid ""
12811284
"Return the next interpreter state object after *interp* from the list of all"
12821285
" such objects."
12831286
msgstr "インタプリタ状態オブジェクトからなるリストのうち、*interp* の次にあるものを返します。"
12841287

1285-
#: ../../c-api/init.rst:1139
1288+
#: ../../c-api/init.rst:1143
12861289
msgid ""
12871290
"Return the pointer to the first :c:type:`PyThreadState` object in the list "
12881291
"of threads associated with the interpreter *interp*."
12891292
msgstr "インタプリタ *interp* に関連付けられているスレッドからなるリストのうち、先頭にある :c:type:`PyThreadState` オブジェクトを返します。"
12901293

1291-
#: ../../c-api/init.rst:1147
1294+
#: ../../c-api/init.rst:1151
12921295
msgid ""
12931296
"Return the next thread state object after *tstate* from the list of all such"
12941297
" objects belonging to the same :c:type:`PyInterpreterState` object."

0 commit comments

Comments
 (0)