@@ -16,9 +16,8 @@ msgstr ""
16
16
"X-Generator :Poedit 2.0.6\n "
17
17
18
18
#: library/operator.rst:2
19
- #, fuzzy
20
19
msgid ":mod:`!operator` --- Standard operators as functions"
21
- msgstr ":mod:`operator` — Opérateurs standards en tant que fonctions"
20
+ msgstr ":mod:`! operator` — Opérateurs standards en tant que fonctions"
22
21
23
22
#: library/operator.rst:9
24
23
msgid "**Source code:** :source:`Lib/operator.py`"
@@ -86,17 +85,16 @@ msgstr ""
86
85
"implémentent les tests de vérité, d'identité et les opérations booléennes :"
87
86
88
87
#: library/operator.rst:61
89
- #, fuzzy
90
88
msgid ""
91
89
"Return the outcome of :keyword:`not` *obj*. (Note that there is no :meth:`!"
92
90
"__not__` method for object instances; only the interpreter core defines this "
93
91
"operation. The result is affected by the :meth:`~object.__bool__` and :meth:"
94
92
"`~object.__len__` methods.)"
95
93
msgstr ""
96
94
"Renvoie le résultat de :keyword:`not` *obj*. (Notez qu'il n'existe pas de "
97
- "méthode :meth:`__not__` pour les instances d'objet; seul le cœur de "
98
- "l'interpréteur définit cette opération. Le résultat dépend des méthodes: "
99
- "meth:`__bool__` et :meth:`__len__`.)"
95
+ "méthode :meth:`! __not__` pour les instances d'objet; seul le cœur de "
96
+ "l'interpréteur définit cette opération. Le résultat dépend des méthodes "
97
+ ": meth:`~object. __bool__` et :meth:`~object. __len__` methods .)"
100
98
101
99
#: library/operator.rst:69
102
100
msgid ""
@@ -146,6 +144,8 @@ msgid ""
146
144
"The result always has exact type :class:`int`. Previously, the result could "
147
145
"have been an instance of a subclass of ``int``."
148
146
msgstr ""
147
+ "Le résultat a toujours le type :class:`int`. Précédemment, le résultat aurait"
148
+ " pu être une instance de la sous-classe de ``int``."
149
149
150
150
#: library/operator.rst:125
151
151
msgid ""
@@ -243,7 +243,6 @@ msgid "Set the value of *a* at index *b* to *c*."
243
243
msgstr "Affecte *c* dans *a* à l'indice *b*."
244
244
245
245
#: library/operator.rst:247
246
- #, fuzzy
247
246
msgid ""
248
247
"Return an estimated length for the object *obj*. First try to return its "
249
248
"actual length, then an estimate using :meth:`object.__length_hint__`, and "
@@ -255,7 +254,7 @@ msgstr ""
255
254
256
255
#: library/operator.rst:254
257
256
msgid "The following operation works with callables:"
258
- msgstr ""
257
+ msgstr "L'opération suivante marche avec les objets appelables: "
259
258
260
259
#: library/operator.rst:259
261
260
msgid "Return ``obj(*args, **kwargs)``."
@@ -329,15 +328,14 @@ msgid ""
329
328
msgstr ""
330
329
331
330
#: library/operator.rst:308
332
- #, fuzzy
333
331
msgid ""
334
332
"Return a callable object that fetches *item* from its operand using the "
335
333
"operand's :meth:`~object.__getitem__` method. If multiple items are "
336
334
"specified, returns a tuple of lookup values. For example:"
337
335
msgstr ""
338
336
"Renvoie un objet appelable qui récupère *item* de l'opérande en utilisant la "
339
- "méthode :meth:`__getitem__`. Si plusieurs *item* sont passés en paramètre, "
340
- "renvoie un *n*-uplet des valeurs récupérées. Par exemple :"
337
+ "méthode :meth:`~object. __getitem__`. Si plusieurs *item* sont passés en "
338
+ "paramètre, renvoie un *n*-uplet des valeurs récupérées. Par exemple :"
341
339
342
340
#: library/operator.rst:312
343
341
msgid "After ``f = itemgetter(2)``, the call ``f(r)`` returns ``r[2]``."
@@ -364,16 +362,15 @@ msgid ""
364
362
msgstr ""
365
363
366
364
#: library/operator.rst:329
367
- #, fuzzy
368
365
msgid ""
369
366
"The items can be any type accepted by the operand's :meth:`~object."
370
367
"__getitem__` method. Dictionaries accept any :term:`hashable` value. "
371
368
"Lists, tuples, and strings accept an index or a slice:"
372
369
msgstr ""
373
370
"Les *items* en entrée peuvent être de n'importe quel type tant que celui-ci "
374
- "est géré par la méthode :meth:`__getitem__` de l'opérande. Les dictionnaires "
375
- "acceptent toute valeur hachable. Les listes, *n*-uplets et chaînes de "
376
- "caractères acceptent un index ou une tranche :"
371
+ "est géré par la méthode :meth:`~object. __getitem__` de l'opérande. Les "
372
+ "dictionnaires acceptent toute valeur hachable. Les listes, *n*-uplets et "
373
+ "chaînes de caractères acceptent un index ou une tranche :"
377
374
378
375
#: library/operator.rst:343
379
376
msgid ""