5
5
msgstr ""
6
6
"Project-Id-Version : Python 3.6\n "
7
7
"Report-Msgid-Bugs-To : \n "
8
- "POT-Creation-Date : 2018-12-21 09:48+0100 \n "
8
+ "POT-Creation-Date : 2019-06-19 22:32+0200 \n "
9
9
"PO-Revision-Date : 2019-06-08 15:22+0200\n "
10
10
"Last-Translator : Julien Palard <julien@palard.fr>\n "
11
11
"Language-Team : FRENCH <traductions@lists.afpy.org>\n "
@@ -392,21 +392,24 @@ msgstr ""
392
392
"argument n'est nécessaire. Si aucun argument nommé n'est nécessaire, "
393
393
"*kwargs* peut être égal à *NULL*."
394
394
395
- #: ../Doc/c-api/object.rst:264 ../Doc/c-api/object.rst:275
396
- #: ../Doc/c-api/object.rst:286 ../Doc/c-api/object.rst:305
397
- #: ../Doc/c-api/object.rst:323
398
- msgid "Returns the result of the call on success, or *NULL* on failure."
395
+ #: ../Doc/c-api/object.rst:264 ../Doc/c-api/object.rst:276
396
+ #: ../Doc/c-api/object.rst:288 ../Doc/c-api/object.rst:308
397
+ #: ../Doc/c-api/object.rst:327 ../Doc/c-api/object.rst:341
398
+ #, fuzzy
399
+ msgid ""
400
+ "Return the result of the call on success, or raise an exception and return "
401
+ "*NULL* on failure."
399
402
msgstr ""
400
403
"Renvoie le résultat de l'appel en cas de succès, ou *NULL* en cas d'échec."
401
404
402
- #: ../Doc/c-api/object.rst:266
405
+ #: ../Doc/c-api/object.rst:267
403
406
msgid ""
404
407
"This is the equivalent of the Python expression: ``callable(*args, "
405
408
"**kwargs)``."
406
409
msgstr ""
407
410
"Ceci est l'équivalent de l'expression Python : ``callable(*args, **kwargs)``."
408
411
409
- #: ../Doc/c-api/object.rst:272
412
+ #: ../Doc/c-api/object.rst:273
410
413
msgid ""
411
414
"Call a callable Python object *callable*, with arguments given by the tuple "
412
415
"*args*. If no arguments are needed, then *args* can be *NULL*."
@@ -415,11 +418,11 @@ msgstr ""
415
418
"le tuple *args*. Si aucun argument n'est nécessaire, alors *args* peut être "
416
419
"égal à *NULL*."
417
420
418
- #: ../Doc/c-api/object.rst:277 ../Doc/c-api/object.rst:288
421
+ #: ../Doc/c-api/object.rst:279 ../Doc/c-api/object.rst:291
419
422
msgid "This is the equivalent of the Python expression: ``callable(*args)``."
420
423
msgstr "Ceci est l'équivalent de l'expression Python : ``callable(*args)``."
421
424
422
- #: ../Doc/c-api/object.rst:282
425
+ #: ../Doc/c-api/object.rst:284
423
426
msgid ""
424
427
"Call a callable Python object *callable*, with a variable number of C "
425
428
"arguments. The C arguments are described using a :c:func:`Py_BuildValue` "
@@ -431,100 +434,99 @@ msgstr ""
431
434
"c:func:`Py_BuildValue`. Le format peut être *NULL*, indiquant qu'aucun "
432
435
"argument n'est donné."
433
436
434
- #: ../Doc/c-api/object.rst:290
437
+ #: ../Doc/c-api/object.rst:293
435
438
msgid ""
436
439
"Note that if you only pass :c:type:`PyObject \\ *` args, :c:func:"
437
440
"`PyObject_CallFunctionObjArgs` is a faster alternative."
438
441
msgstr ""
439
442
440
- #: ../Doc/c-api/object.rst:293
443
+ #: ../Doc/c-api/object.rst:296
441
444
msgid "The type of *format* was changed from ``char *``."
442
445
msgstr ""
443
446
444
- #: ../Doc/c-api/object.rst:299
447
+ #: ../Doc/c-api/object.rst:302
445
448
msgid ""
446
449
"Call the method named *name* of object *obj* with a variable number of C "
447
450
"arguments. The C arguments are described by a :c:func:`Py_BuildValue` "
448
451
"format string that should produce a tuple."
449
452
msgstr ""
450
453
451
- #: ../Doc/c-api/object.rst:303
454
+ #: ../Doc/c-api/object.rst:306
452
455
msgid "The format can be *NULL*, indicating that no arguments are provided."
453
456
msgstr ""
454
457
455
- #: ../Doc/c-api/object.rst:307
458
+ #: ../Doc/c-api/object.rst:311
456
459
msgid ""
457
460
"This is the equivalent of the Python expression: ``obj.name(arg1, "
458
461
"arg2, ...)``."
459
462
msgstr ""
460
463
461
- #: ../Doc/c-api/object.rst:310
464
+ #: ../Doc/c-api/object.rst:314
462
465
msgid ""
463
466
"Note that if you only pass :c:type:`PyObject \\ *` args, :c:func:"
464
467
"`PyObject_CallMethodObjArgs` is a faster alternative."
465
468
msgstr ""
466
469
467
- #: ../Doc/c-api/object.rst:313
470
+ #: ../Doc/c-api/object.rst:317
468
471
msgid "The types of *name* and *format* were changed from ``char *``."
469
472
msgstr ""
470
473
471
- #: ../Doc/c-api/object.rst:319
474
+ #: ../Doc/c-api/object.rst:323
472
475
msgid ""
473
476
"Call a callable Python object *callable*, with a variable number of :c:type:"
474
477
"`PyObject\\ *` arguments. The arguments are provided as a variable number of "
475
478
"parameters followed by *NULL*."
476
479
msgstr ""
477
480
478
- #: ../Doc/c-api/object.rst:325
481
+ #: ../Doc/c-api/object.rst:330
479
482
msgid ""
480
483
"This is the equivalent of the Python expression: ``callable(arg1, "
481
484
"arg2, ...)``."
482
485
msgstr ""
483
486
484
- #: ../Doc/c-api/object.rst:331
487
+ #: ../Doc/c-api/object.rst:336
485
488
msgid ""
486
489
"Calls a method of the Python object *obj*, where the name of the method is "
487
490
"given as a Python string object in *name*. It is called with a variable "
488
491
"number of :c:type:`PyObject\\ *` arguments. The arguments are provided as a "
489
- "variable number of parameters followed by *NULL*. Returns the result of the "
490
- "call on success, or *NULL* on failure."
492
+ "variable number of parameters followed by *NULL*."
491
493
msgstr ""
492
494
493
- #: ../Doc/c-api/object.rst:342
495
+ #: ../Doc/c-api/object.rst:349
494
496
msgid ""
495
497
"Compute and return the hash value of an object *o*. On failure, return "
496
498
"``-1``. This is the equivalent of the Python expression ``hash(o)``."
497
499
msgstr ""
498
500
499
- #: ../Doc/c-api/object.rst:345
501
+ #: ../Doc/c-api/object.rst:352
500
502
msgid ""
501
503
"The return type is now Py_hash_t. This is a signed integer the same size as "
502
504
"Py_ssize_t."
503
505
msgstr ""
504
506
505
- #: ../Doc/c-api/object.rst:352
507
+ #: ../Doc/c-api/object.rst:359
506
508
msgid ""
507
509
"Set a :exc:`TypeError` indicating that ``type(o)`` is not hashable and "
508
510
"return ``-1``. This function receives special treatment when stored in a "
509
511
"``tp_hash`` slot, allowing a type to explicitly indicate to the interpreter "
510
512
"that it is not hashable."
511
513
msgstr ""
512
514
513
- #: ../Doc/c-api/object.rst:360
515
+ #: ../Doc/c-api/object.rst:367
514
516
msgid ""
515
517
"Returns ``1`` if the object *o* is considered to be true, and ``0`` "
516
518
"otherwise. This is equivalent to the Python expression ``not not o``. On "
517
519
"failure, return ``-1``."
518
520
msgstr ""
519
521
520
- #: ../Doc/c-api/object.rst:367
522
+ #: ../Doc/c-api/object.rst:374
521
523
msgid ""
522
524
"Returns ``0`` if the object *o* is considered to be true, and ``1`` "
523
525
"otherwise. This is equivalent to the Python expression ``not o``. On "
524
526
"failure, return ``-1``."
525
527
msgstr ""
526
528
527
- #: ../Doc/c-api/object.rst:376
529
+ #: ../Doc/c-api/object.rst:383
528
530
msgid ""
529
531
"When *o* is non-*NULL*, returns a type object corresponding to the object "
530
532
"type of object *o*. On failure, raises :exc:`SystemError` and returns "
@@ -535,48 +537,48 @@ msgid ""
535
537
"except when the incremented reference count is needed."
536
538
msgstr ""
537
539
538
- #: ../Doc/c-api/object.rst:387
540
+ #: ../Doc/c-api/object.rst:394
539
541
msgid ""
540
542
"Return true if the object *o* is of type *type* or a subtype of *type*. "
541
543
"Both parameters must be non-*NULL*."
542
544
msgstr ""
543
545
544
- #: ../Doc/c-api/object.rst:396
546
+ #: ../Doc/c-api/object.rst:403
545
547
msgid ""
546
548
"Return the length of object *o*. If the object *o* provides either the "
547
549
"sequence and mapping protocols, the sequence length is returned. On error, "
548
550
"``-1`` is returned. This is the equivalent to the Python expression "
549
551
"``len(o)``."
550
552
msgstr ""
551
553
552
- #: ../Doc/c-api/object.rst:403
554
+ #: ../Doc/c-api/object.rst:410
553
555
msgid ""
554
556
"Return an estimated length for the object *o*. First try to return its "
555
557
"actual length, then an estimate using :meth:`~object.__length_hint__`, and "
556
558
"finally return the default value. On error return ``-1``. This is the "
557
559
"equivalent to the Python expression ``operator.length_hint(o, default)``."
558
560
msgstr ""
559
561
560
- #: ../Doc/c-api/object.rst:413
562
+ #: ../Doc/c-api/object.rst:420
561
563
msgid ""
562
564
"Return element of *o* corresponding to the object *key* or *NULL* on "
563
565
"failure. This is the equivalent of the Python expression ``o[key]``."
564
566
msgstr ""
565
567
566
- #: ../Doc/c-api/object.rst:419
568
+ #: ../Doc/c-api/object.rst:426
567
569
msgid ""
568
570
"Map the object *key* to the value *v*. Raise an exception and return ``-1`` "
569
571
"on failure; return ``0`` on success. This is the equivalent of the Python "
570
572
"statement ``o[key] = v``."
571
573
msgstr ""
572
574
573
- #: ../Doc/c-api/object.rst:426
575
+ #: ../Doc/c-api/object.rst:433
574
576
msgid ""
575
577
"Remove the mapping for the object *key* from the object *o*. Return ``-1`` "
576
578
"on failure. This is equivalent to the Python statement ``del o[key]``."
577
579
msgstr ""
578
580
579
- #: ../Doc/c-api/object.rst:432
581
+ #: ../Doc/c-api/object.rst:439
580
582
msgid ""
581
583
"This is equivalent to the Python expression ``dir(o)``, returning a "
582
584
"(possibly empty) list of strings appropriate for the object argument, or "
@@ -586,7 +588,7 @@ msgid ""
586
588
"`PyErr_Occurred` will return false."
587
589
msgstr ""
588
590
589
- #: ../Doc/c-api/object.rst:441
591
+ #: ../Doc/c-api/object.rst:448
590
592
msgid ""
591
593
"This is equivalent to the Python expression ``iter(o)``. It returns a new "
592
594
"iterator for the object argument, or the object itself if the object is "
0 commit comments