Skip to content

Commit bb8b1ee

Browse files
committed
merge pot files.
1 parent 3c33cb0 commit bb8b1ee

29 files changed

+2895
-2668
lines changed

c-api/init.po

Lines changed: 43 additions & 40 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ msgid ""
88
msgstr ""
99
"Project-Id-Version: Python 3.6\n"
1010
"Report-Msgid-Bugs-To: \n"
11-
"POT-Creation-Date: 2017-04-02 22:11+0200\n"
11+
"POT-Creation-Date: 2018-02-08 09:58+0100\n"
1212
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1313
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
1414
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1123,7 +1123,7 @@ msgid ":const:`PyTrace_CALL`"
11231123
msgstr ""
11241124

11251125
#: ../Doc/c-api/init.rst:1066 ../Doc/c-api/init.rst:1071
1126-
msgid "Always *NULL*."
1126+
msgid "Always :c:data:`Py_None`."
11271127
msgstr ""
11281128

11291129
#: ../Doc/c-api/init.rst:1068
@@ -1194,7 +1194,7 @@ msgstr ""
11941194
#: ../Doc/c-api/init.rst:1112
11951195
msgid ""
11961196
"The value for the *what* parameter to :c:type:`Py_tracefunc` functions when "
1197-
"a call is returning without propagating an exception."
1197+
"a call is about to return."
11981198
msgstr ""
11991199

12001200
#: ../Doc/c-api/init.rst:1118
@@ -1221,166 +1221,169 @@ msgid ""
12211221
"function as its first parameter, and may be any Python object, or *NULL*. "
12221222
"If the profile function needs to maintain state, using a different value for "
12231223
"*obj* for each thread provides a convenient and thread-safe place to store "
1224-
"it. The profile function is called for all monitored events except the line-"
1225-
"number events."
1224+
"it. The profile function is called for all monitored events except :const:"
1225+
"`PyTrace_LINE` and :const:`PyTrace_EXCEPTION`."
12261226
msgstr ""
12271227

12281228
#: ../Doc/c-api/init.rst:1146
12291229
msgid ""
12301230
"Set the tracing function to *func*. This is similar to :c:func:"
12311231
"`PyEval_SetProfile`, except the tracing function does receive line-number "
1232-
"events."
1232+
"events and does not receive any event related to C function objects being "
1233+
"called. Any trace function registered using :c:func:`PyEval_SetTrace` will "
1234+
"not receive :const:`PyTrace_C_CALL`, :const:`PyTrace_C_EXCEPTION` or :const:"
1235+
"`PyTrace_C_RETURN` as a value for the *what* parameter."
12331236
msgstr ""
12341237

1235-
#: ../Doc/c-api/init.rst:1152
1238+
#: ../Doc/c-api/init.rst:1156
12361239
msgid ""
12371240
"Return a tuple of function call counts. There are constants defined for the "
12381241
"positions within the tuple:"
12391242
msgstr ""
12401243

1241-
#: ../Doc/c-api/init.rst:1156
1244+
#: ../Doc/c-api/init.rst:1160
12421245
msgid "Name"
12431246
msgstr "Nom"
12441247

1245-
#: ../Doc/c-api/init.rst:1156
1248+
#: ../Doc/c-api/init.rst:1160
12461249
msgid "Value"
12471250
msgstr "Valeur"
12481251

1249-
#: ../Doc/c-api/init.rst:1158
1252+
#: ../Doc/c-api/init.rst:1162
12501253
msgid ":const:`PCALL_ALL`"
12511254
msgstr ""
12521255

1253-
#: ../Doc/c-api/init.rst:1158
1256+
#: ../Doc/c-api/init.rst:1162
12541257
msgid "0"
12551258
msgstr "0"
12561259

1257-
#: ../Doc/c-api/init.rst:1160
1260+
#: ../Doc/c-api/init.rst:1164
12581261
msgid ":const:`PCALL_FUNCTION`"
12591262
msgstr ""
12601263

1261-
#: ../Doc/c-api/init.rst:1160
1264+
#: ../Doc/c-api/init.rst:1164
12621265
msgid "1"
12631266
msgstr "1"
12641267

1265-
#: ../Doc/c-api/init.rst:1162
1268+
#: ../Doc/c-api/init.rst:1166
12661269
msgid ":const:`PCALL_FAST_FUNCTION`"
12671270
msgstr ""
12681271

1269-
#: ../Doc/c-api/init.rst:1162
1272+
#: ../Doc/c-api/init.rst:1166
12701273
msgid "2"
12711274
msgstr "2"
12721275

1273-
#: ../Doc/c-api/init.rst:1164
1276+
#: ../Doc/c-api/init.rst:1168
12741277
msgid ":const:`PCALL_FASTER_FUNCTION`"
12751278
msgstr ""
12761279

1277-
#: ../Doc/c-api/init.rst:1164
1280+
#: ../Doc/c-api/init.rst:1168
12781281
msgid "3"
12791282
msgstr "3"
12801283

1281-
#: ../Doc/c-api/init.rst:1166
1284+
#: ../Doc/c-api/init.rst:1170
12821285
msgid ":const:`PCALL_METHOD`"
12831286
msgstr ""
12841287

1285-
#: ../Doc/c-api/init.rst:1166
1288+
#: ../Doc/c-api/init.rst:1170
12861289
msgid "4"
12871290
msgstr "4"
12881291

1289-
#: ../Doc/c-api/init.rst:1168
1292+
#: ../Doc/c-api/init.rst:1172
12901293
msgid ":const:`PCALL_BOUND_METHOD`"
12911294
msgstr ""
12921295

1293-
#: ../Doc/c-api/init.rst:1168
1296+
#: ../Doc/c-api/init.rst:1172
12941297
msgid "5"
12951298
msgstr "5"
12961299

1297-
#: ../Doc/c-api/init.rst:1170
1300+
#: ../Doc/c-api/init.rst:1174
12981301
msgid ":const:`PCALL_CFUNCTION`"
12991302
msgstr ""
13001303

1301-
#: ../Doc/c-api/init.rst:1170
1304+
#: ../Doc/c-api/init.rst:1174
13021305
msgid "6"
13031306
msgstr "6"
13041307

1305-
#: ../Doc/c-api/init.rst:1172
1308+
#: ../Doc/c-api/init.rst:1176
13061309
msgid ":const:`PCALL_TYPE`"
13071310
msgstr ""
13081311

1309-
#: ../Doc/c-api/init.rst:1172
1312+
#: ../Doc/c-api/init.rst:1176
13101313
msgid "7"
13111314
msgstr "7"
13121315

1313-
#: ../Doc/c-api/init.rst:1174
1316+
#: ../Doc/c-api/init.rst:1178
13141317
msgid ":const:`PCALL_GENERATOR`"
13151318
msgstr ""
13161319

1317-
#: ../Doc/c-api/init.rst:1174
1320+
#: ../Doc/c-api/init.rst:1178
13181321
msgid "8"
13191322
msgstr "8"
13201323

1321-
#: ../Doc/c-api/init.rst:1176
1324+
#: ../Doc/c-api/init.rst:1180
13221325
msgid ":const:`PCALL_OTHER`"
13231326
msgstr ""
13241327

1325-
#: ../Doc/c-api/init.rst:1176
1328+
#: ../Doc/c-api/init.rst:1180
13261329
msgid "9"
13271330
msgstr ""
13281331

1329-
#: ../Doc/c-api/init.rst:1178
1332+
#: ../Doc/c-api/init.rst:1182
13301333
msgid ":const:`PCALL_POP`"
13311334
msgstr ""
13321335

1333-
#: ../Doc/c-api/init.rst:1178
1336+
#: ../Doc/c-api/init.rst:1182
13341337
msgid "10"
13351338
msgstr "10"
13361339

1337-
#: ../Doc/c-api/init.rst:1181
1340+
#: ../Doc/c-api/init.rst:1185
13381341
msgid ""
13391342
":const:`PCALL_FAST_FUNCTION` means no argument tuple needs to be created. :"
13401343
"const:`PCALL_FASTER_FUNCTION` means that the fast-path frame setup code is "
13411344
"used."
13421345
msgstr ""
13431346

1344-
#: ../Doc/c-api/init.rst:1184
1347+
#: ../Doc/c-api/init.rst:1188
13451348
msgid ""
13461349
"If there is a method call where the call can be optimized by changing the "
13471350
"argument tuple and calling the function directly, it gets recorded twice."
13481351
msgstr ""
13491352

1350-
#: ../Doc/c-api/init.rst:1188
1353+
#: ../Doc/c-api/init.rst:1192
13511354
msgid ""
13521355
"This function is only present if Python is compiled with :const:"
13531356
"`CALL_PROFILE` defined."
13541357
msgstr ""
13551358

1356-
#: ../Doc/c-api/init.rst:1194
1359+
#: ../Doc/c-api/init.rst:1198
13571360
msgid "Advanced Debugger Support"
13581361
msgstr "Support avancé du debugger"
13591362

1360-
#: ../Doc/c-api/init.rst:1199
1363+
#: ../Doc/c-api/init.rst:1203
13611364
msgid ""
13621365
"These functions are only intended to be used by advanced debugging tools."
13631366
msgstr ""
13641367

1365-
#: ../Doc/c-api/init.rst:1204
1368+
#: ../Doc/c-api/init.rst:1208
13661369
msgid ""
13671370
"Return the interpreter state object at the head of the list of all such "
13681371
"objects."
13691372
msgstr ""
13701373

1371-
#: ../Doc/c-api/init.rst:1209
1374+
#: ../Doc/c-api/init.rst:1213
13721375
msgid ""
13731376
"Return the next interpreter state object after *interp* from the list of all "
13741377
"such objects."
13751378
msgstr ""
13761379

1377-
#: ../Doc/c-api/init.rst:1215
1380+
#: ../Doc/c-api/init.rst:1219
13781381
msgid ""
13791382
"Return the pointer to the first :c:type:`PyThreadState` object in the list "
13801383
"of threads associated with the interpreter *interp*."
13811384
msgstr ""
13821385

1383-
#: ../Doc/c-api/init.rst:1221
1386+
#: ../Doc/c-api/init.rst:1225
13841387
msgid ""
13851388
"Return the next thread state object after *tstate* from the list of all such "
13861389
"objects belonging to the same :c:type:`PyInterpreterState` object."

0 commit comments

Comments
 (0)