Skip to content

Commit a6585f4

Browse files
committed
Merge commit '80d350ad' into 3.13
2 parents 1bc9231 + 80d350a commit a6585f4

File tree

1 file changed

+13
-16
lines changed

1 file changed

+13
-16
lines changed

library/operator.po

Lines changed: 13 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,8 @@ msgstr ""
1616
"X-Generator: Poedit 2.0.6\n"
1717

1818
#: library/operator.rst:2
19-
#, fuzzy
2019
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"
2221

2322
#: library/operator.rst:9
2423
msgid "**Source code:** :source:`Lib/operator.py`"
@@ -86,17 +85,16 @@ msgstr ""
8685
"implémentent les tests de vérité, d'identité et les opérations booléennes :"
8786

8887
#: library/operator.rst:61
89-
#, fuzzy
9088
msgid ""
9189
"Return the outcome of :keyword:`not` *obj*. (Note that there is no :meth:`!"
9290
"__not__` method for object instances; only the interpreter core defines this "
9391
"operation. The result is affected by the :meth:`~object.__bool__` and :meth:"
9492
"`~object.__len__` methods.)"
9593
msgstr ""
9694
"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.)"
10098

10199
#: library/operator.rst:69
102100
msgid ""
@@ -146,6 +144,8 @@ msgid ""
146144
"The result always has exact type :class:`int`. Previously, the result could "
147145
"have been an instance of a subclass of ``int``."
148146
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``."
149149

150150
#: library/operator.rst:125
151151
msgid ""
@@ -243,19 +243,18 @@ msgid "Set the value of *a* at index *b* to *c*."
243243
msgstr "Affecte *c* dans *a* à l'indice *b*."
244244

245245
#: library/operator.rst:247
246-
#, fuzzy
247246
msgid ""
248247
"Return an estimated length for the object *obj*. First try to return its "
249248
"actual length, then an estimate using :meth:`object.__length_hint__`, and "
250249
"finally return the default value."
251250
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 "
253252
"renvoyer la taille réelle, puis une estimation en appelant :meth:`object."
254253
"__length_hint__`, ou sinon la valeur par défaut."
255254

256255
#: library/operator.rst:254
257256
msgid "The following operation works with callables:"
258-
msgstr ""
257+
msgstr "L'opération suivante marche avec les objets appelables : "
259258

260259
#: library/operator.rst:259
261260
msgid "Return ``obj(*args, **kwargs)``."
@@ -309,15 +308,14 @@ msgid "Equivalent to::"
309308
msgstr "Équivalent à ::"
310309

311310
#: library/operator.rst:308
312-
#, fuzzy
313311
msgid ""
314312
"Return a callable object that fetches *item* from its operand using the "
315313
"operand's :meth:`~object.__getitem__` method. If multiple items are "
316314
"specified, returns a tuple of lookup values. For example:"
317315
msgstr ""
318316
"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 :"
321319

322320
#: library/operator.rst:312
323321
msgid "After ``f = itemgetter(2)``, the call ``f(r)`` returns ``r[2]``."
@@ -331,16 +329,15 @@ msgstr ""
331329
"Avec ``g = itemgetter(2, 5, 3)``, ``g(r)`` renvoie ``(r[2], r[5], r[3])``."
332330

333331
#: library/operator.rst:329
334-
#, fuzzy
335332
msgid ""
336333
"The items can be any type accepted by the operand's :meth:`~object."
337334
"__getitem__` method. Dictionaries accept any :term:`hashable` value. "
338335
"Lists, tuples, and strings accept an index or a slice:"
339336
msgstr ""
340337
"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 :"
344341

345342
#: library/operator.rst:343
346343
msgid ""

0 commit comments

Comments
 (0)