7
7
msgstr ""
8
8
"Project-Id-Version : Python 3.11\n "
9
9
"Report-Msgid-Bugs-To : \n "
10
- "POT-Creation-Date : 2023-03 -01 00:18 +0000\n "
10
+ "POT-Creation-Date : 2023-04 -01 00:16 +0000\n "
11
11
"PO-Revision-Date : YEAR-MO-DA HO:MI+ZONE\n "
12
12
"Last-Translator : \n "
13
13
"Language-Team : TURKISH <python.docs.tr@gmail.com>\n "
@@ -191,21 +191,34 @@ msgid ""
191
191
"will always return ``1`` for :const:`Py_EQ` and ``0`` for :const:`Py_NE`."
192
192
msgstr ""
193
193
194
- #: c-api/object.rst:186
194
+ #: c-api/object.rst:184
195
+ msgid ""
196
+ "Format *obj* using *format_spec*. This is equivalent to the Python "
197
+ "expression ``format(obj, format_spec)``."
198
+ msgstr ""
199
+
200
+ #: c-api/object.rst:187
201
+ msgid ""
202
+ "*format_spec* may be ``NULL``. In this case the call is equivalent to "
203
+ "``format(obj)``. Returns the formatted string on success, ``NULL`` on "
204
+ "failure."
205
+ msgstr ""
206
+
207
+ #: c-api/object.rst:195
195
208
msgid ""
196
209
"Compute a string representation of object *o*. Returns the string "
197
210
"representation on success, ``NULL`` on failure. This is the equivalent of "
198
211
"the Python expression ``repr(o)``. Called by the :func:`repr` built-in "
199
212
"function."
200
213
msgstr ""
201
214
202
- #: c-api/object.rst:214
215
+ #: c-api/object.rst:223
203
216
msgid ""
204
217
"This function now includes a debug assertion to help ensure that it does not "
205
218
"silently discard an active exception."
206
219
msgstr ""
207
220
208
- #: c-api/object.rst:198
221
+ #: c-api/object.rst:207
209
222
msgid ""
210
223
"As :c:func:`PyObject_Repr`, compute a string representation of object *o*, "
211
224
"but escape the non-ASCII characters in the string returned by :c:func:"
@@ -214,15 +227,15 @@ msgid ""
214
227
"Called by the :func:`ascii` built-in function."
215
228
msgstr ""
216
229
217
- #: c-api/object.rst:209
230
+ #: c-api/object.rst:218
218
231
msgid ""
219
232
"Compute a string representation of object *o*. Returns the string "
220
233
"representation on success, ``NULL`` on failure. This is the equivalent of "
221
234
"the Python expression ``str(o)``. Called by the :func:`str` built-in "
222
235
"function and, therefore, by the :func:`print` function."
223
236
msgstr ""
224
237
225
- #: c-api/object.rst:223
238
+ #: c-api/object.rst:232
226
239
msgid ""
227
240
"Compute a bytes representation of object *o*. ``NULL`` is returned on "
228
241
"failure and a bytes object on success. This is equivalent to the Python "
@@ -231,95 +244,95 @@ msgid ""
231
244
"bytes object."
232
245
msgstr ""
233
246
234
- #: c-api/object.rst:232
247
+ #: c-api/object.rst:241
235
248
msgid ""
236
249
"Return ``1`` if the class *derived* is identical to or derived from the "
237
250
"class *cls*, otherwise return ``0``. In case of an error, return ``-1``."
238
251
msgstr ""
239
252
240
- #: c-api/object.rst:254
253
+ #: c-api/object.rst:263
241
254
msgid ""
242
255
"If *cls* is a tuple, the check will be done against every entry in *cls*. "
243
256
"The result will be ``1`` when at least one of the checks returns ``1``, "
244
257
"otherwise it will be ``0``."
245
258
msgstr ""
246
259
247
- #: c-api/object.rst:239
260
+ #: c-api/object.rst:248
248
261
msgid ""
249
262
"If *cls* has a :meth:`~class.__subclasscheck__` method, it will be called to "
250
263
"determine the subclass status as described in :pep:`3119`. Otherwise, "
251
264
"*derived* is a subclass of *cls* if it is a direct or indirect subclass, i."
252
265
"e. contained in ``cls.__mro__``."
253
266
msgstr ""
254
267
255
- #: c-api/object.rst:244
268
+ #: c-api/object.rst:253
256
269
msgid ""
257
270
"Normally only class objects, i.e. instances of :class:`type` or a derived "
258
271
"class, are considered classes. However, objects can override this by having "
259
272
"a :attr:`__bases__` attribute (which must be a tuple of base classes)."
260
273
msgstr ""
261
274
262
- #: c-api/object.rst:251
275
+ #: c-api/object.rst:260
263
276
msgid ""
264
277
"Return ``1`` if *inst* is an instance of the class *cls* or a subclass of "
265
278
"*cls*, or ``0`` if not. On error, returns ``-1`` and sets an exception."
266
279
msgstr ""
267
280
268
- #: c-api/object.rst:258
281
+ #: c-api/object.rst:267
269
282
msgid ""
270
283
"If *cls* has a :meth:`~class.__instancecheck__` method, it will be called to "
271
284
"determine the subclass status as described in :pep:`3119`. Otherwise, "
272
285
"*inst* is an instance of *cls* if its class is a subclass of *cls*."
273
286
msgstr ""
274
287
275
- #: c-api/object.rst:262
288
+ #: c-api/object.rst:271
276
289
msgid ""
277
290
"An instance *inst* can override what is considered its class by having a :"
278
291
"attr:`__class__` attribute."
279
292
msgstr ""
280
293
281
- #: c-api/object.rst:265
294
+ #: c-api/object.rst:274
282
295
msgid ""
283
296
"An object *cls* can override if it is considered a class, and what its base "
284
297
"classes are, by having a :attr:`__bases__` attribute (which must be a tuple "
285
298
"of base classes)."
286
299
msgstr ""
287
300
288
- #: c-api/object.rst:274
301
+ #: c-api/object.rst:283
289
302
msgid ""
290
303
"Compute and return the hash value of an object *o*. On failure, return "
291
304
"``-1``. This is the equivalent of the Python expression ``hash(o)``."
292
305
msgstr ""
293
306
294
- #: c-api/object.rst:277
307
+ #: c-api/object.rst:286
295
308
msgid ""
296
309
"The return type is now Py_hash_t. This is a signed integer the same size "
297
310
"as :c:type:`Py_ssize_t`."
298
311
msgstr ""
299
312
300
- #: c-api/object.rst:284
313
+ #: c-api/object.rst:293
301
314
msgid ""
302
315
"Set a :exc:`TypeError` indicating that ``type(o)`` is not :term:`hashable` "
303
316
"and return ``-1``. This function receives special treatment when stored in a "
304
317
"``tp_hash`` slot, allowing a type to explicitly indicate to the interpreter "
305
318
"that it is not hashable."
306
319
msgstr ""
307
320
308
- #: c-api/object.rst:292
321
+ #: c-api/object.rst:301
309
322
msgid ""
310
323
"Returns ``1`` if the object *o* is considered to be true, and ``0`` "
311
324
"otherwise. This is equivalent to the Python expression ``not not o``. On "
312
325
"failure, return ``-1``."
313
326
msgstr ""
314
327
315
- #: c-api/object.rst:299
328
+ #: c-api/object.rst:308
316
329
msgid ""
317
330
"Returns ``0`` if the object *o* is considered to be true, and ``1`` "
318
331
"otherwise. This is equivalent to the Python expression ``not o``. On "
319
332
"failure, return ``-1``."
320
333
msgstr ""
321
334
322
- #: c-api/object.rst:308
335
+ #: c-api/object.rst:317
323
336
msgid ""
324
337
"When *o* is non-``NULL``, returns a type object corresponding to the object "
325
338
"type of object *o*. On failure, raises :exc:`SystemError` and returns "
@@ -330,21 +343,21 @@ msgid ""
330
343
"incremented reference count is needed."
331
344
msgstr ""
332
345
333
- #: c-api/object.rst:319
346
+ #: c-api/object.rst:328
334
347
msgid ""
335
348
"Return non-zero if the object *o* is of type *type* or a subtype of *type*, "
336
349
"and ``0`` otherwise. Both parameters must be non-``NULL``."
337
350
msgstr ""
338
351
339
- #: c-api/object.rst:328
352
+ #: c-api/object.rst:337
340
353
msgid ""
341
354
"Return the length of object *o*. If the object *o* provides either the "
342
355
"sequence and mapping protocols, the sequence length is returned. On error, "
343
356
"``-1`` is returned. This is the equivalent to the Python expression "
344
357
"``len(o)``."
345
358
msgstr ""
346
359
347
- #: c-api/object.rst:335
360
+ #: c-api/object.rst:344
348
361
msgid ""
349
362
"Return an estimated length for the object *o*. First try to return its "
350
363
"actual length, then an estimate using :meth:`~object.__length_hint__`, and "
@@ -353,26 +366,26 @@ msgid ""
353
366
"defaultvalue)``."
354
367
msgstr ""
355
368
356
- #: c-api/object.rst:345
369
+ #: c-api/object.rst:354
357
370
msgid ""
358
371
"Return element of *o* corresponding to the object *key* or ``NULL`` on "
359
372
"failure. This is the equivalent of the Python expression ``o[key]``."
360
373
msgstr ""
361
374
362
- #: c-api/object.rst:351
375
+ #: c-api/object.rst:360
363
376
msgid ""
364
377
"Map the object *key* to the value *v*. Raise an exception and return ``-1`` "
365
378
"on failure; return ``0`` on success. This is the equivalent of the Python "
366
379
"statement ``o[key] = v``. This function *does not* steal a reference to *v*."
367
380
msgstr ""
368
381
369
- #: c-api/object.rst:359
382
+ #: c-api/object.rst:368
370
383
msgid ""
371
384
"Remove the mapping for the object *key* from the object *o*. Return ``-1`` "
372
385
"on failure. This is equivalent to the Python statement ``del o[key]``."
373
386
msgstr ""
374
387
375
- #: c-api/object.rst:365
388
+ #: c-api/object.rst:374
376
389
msgid ""
377
390
"This is equivalent to the Python expression ``dir(o)``, returning a "
378
391
"(possibly empty) list of strings appropriate for the object argument, or "
@@ -382,15 +395,15 @@ msgid ""
382
395
"`PyErr_Occurred` will return false."
383
396
msgstr ""
384
397
385
- #: c-api/object.rst:374
398
+ #: c-api/object.rst:383
386
399
msgid ""
387
400
"This is equivalent to the Python expression ``iter(o)``. It returns a new "
388
401
"iterator for the object argument, or the object itself if the object is "
389
402
"already an iterator. Raises :exc:`TypeError` and returns ``NULL`` if the "
390
403
"object cannot be iterated."
391
404
msgstr ""
392
405
393
- #: c-api/object.rst:382
406
+ #: c-api/object.rst:391
394
407
msgid ""
395
408
"This is the equivalent to the Python expression ``aiter(o)``. Takes an :"
396
409
"class:`AsyncIterable` object and returns an :class:`AsyncIterator` for it. "
0 commit comments