@@ -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 d'une sous-classe de ``int``."
149
149
150
150
#: library/operator.rst:125
151
151
msgid ""
@@ -243,19 +243,18 @@ 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 "
250
249
"finally return the default value."
251
250
msgstr ""
252
- "Renvoie une estimation de la taille de l'objet *o *. Tente d'abord de "
251
+ "Renvoie une estimation de la taille de l'objet *obj *. Tente d'abord de "
253
252
"renvoyer la taille réelle, puis une estimation en appelant :meth:`object."
254
253
"__length_hint__`, ou sinon la valeur par défaut."
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)``."
@@ -309,15 +308,14 @@ msgid "Equivalent to::"
309
308
msgstr "Équivalent à ::"
310
309
311
310
#: library/operator.rst:308
312
- #, fuzzy
313
311
msgid ""
314
312
"Return a callable object that fetches *item* from its operand using the "
315
313
"operand's :meth:`~object.__getitem__` method. If multiple items are "
316
314
"specified, returns a tuple of lookup values. For example:"
317
315
msgstr ""
318
316
"Renvoie un objet appelable qui récupère *item* de l'opérande en utilisant la "
319
- "méthode :meth:`__getitem__`. Si plusieurs *item* sont passés en paramètre, "
320
- "renvoie un *n*-uplet des valeurs récupérées. Par exemple :"
317
+ "méthode :meth:`~object. __getitem__`. Si plusieurs *item* sont passés en "
318
+ "paramètre, renvoie un *n*-uplet des valeurs récupérées. Par exemple :"
321
319
322
320
#: library/operator.rst:312
323
321
msgid "After ``f = itemgetter(2)``, the call ``f(r)`` returns ``r[2]``."
@@ -331,16 +329,15 @@ msgstr ""
331
329
"Avec ``g = itemgetter(2, 5, 3)``, ``g(r)`` renvoie ``(r[2], r[5], r[3])``."
332
330
333
331
#: library/operator.rst:329
334
- #, fuzzy
335
332
msgid ""
336
333
"The items can be any type accepted by the operand's :meth:`~object."
337
334
"__getitem__` method. Dictionaries accept any :term:`hashable` value. "
338
335
"Lists, tuples, and strings accept an index or a slice:"
339
336
msgstr ""
340
337
"Les *items* en entrée peuvent être de n'importe quel type tant que celui-ci "
341
- "est géré par la méthode :meth:`__getitem__` de l'opérande. Les dictionnaires "
342
- "acceptent toute valeur hachable. Les listes, *n*-uplets et chaînes de "
343
- "caractères acceptent un index ou une tranche :"
338
+ "est géré par la méthode :meth:`~object. __getitem__` de l'opérande. Les "
339
+ "dictionnaires acceptent toute valeur hachable. Les listes, *n*-uplets et "
340
+ "chaînes de caractères acceptent un index ou une tranche :"
344
341
345
342
#: library/operator.rst:343
346
343
msgid ""