@@ -6,14 +6,14 @@ msgstr ""
6
6
"Project-Id-Version : Python 3.6\n "
7
7
"Report-Msgid-Bugs-To : \n "
8
8
"POT-Creation-Date : 2019-03-20 09:03+0100\n "
9
- "PO-Revision-Date : 2018-12-24 14:55 +0100\n "
10
- "
Last-Translator :
Julien Palard <[email protected] >\n"
9
+ "PO-Revision-Date : 2019-02-27 12:19 +0100\n "
10
+ "
Last-Translator :
Jules Lasne <[email protected] >\n"
11
11
"
Language-Team :
FRENCH <[email protected] >\n "
12
12
"Language : fr\n "
13
13
"MIME-Version : 1.0\n "
14
14
"Content-Type : text/plain; charset=UTF-8\n "
15
15
"Content-Transfer-Encoding : 8bit\n "
16
- "X-Generator : Poedit 2.0.6 \n "
16
+ "X-Generator : Poedit 2.2.1 \n "
17
17
18
18
#: ../Doc/library/stdtypes.rst:8
19
19
msgid "Built-in Types"
@@ -103,7 +103,7 @@ msgid ""
103
103
"empty sequences and collections: ``''``, ``()``, ``[]``, ``{}``, ``set()``, "
104
104
"``range(0)``"
105
105
msgstr ""
106
- "Les chaînes et collections vides : ``''``, ``()``, ``[]``, ``{}``, "
106
+ "les chaînes et collections vides : ``''``, ``()``, ``[]``, ``{}``, "
107
107
"``set()``, ``range(0)``"
108
108
109
109
#: ../Doc/library/stdtypes.rst:69
@@ -119,10 +119,9 @@ msgstr ""
119
119
"``or`` et ``and`` renvoient toujours l'une de leurs opérandes.)"
120
120
121
121
#: ../Doc/library/stdtypes.rst:78
122
- #, fuzzy
123
122
msgid "Boolean Operations --- :keyword:`!and`, :keyword:`!or`, :keyword:`!not`"
124
123
msgstr ""
125
- "Opérations booléennes --- :keyword:`and`, :keyword:`or`, :keyword:`not`"
124
+ "Opérations booléennes --- :keyword:`! and`, :keyword:`! or`, :keyword:`! not`"
126
125
127
126
#: ../Doc/library/stdtypes.rst:82
128
127
msgid "These are the Boolean operations, ordered by ascending priority:"
@@ -5223,7 +5222,7 @@ msgstr ""
5223
5222
#: ../Doc/library/stdtypes.rst:3531
5224
5223
msgid "memoryviews can now be indexed with tuple of integers."
5225
5224
msgstr ""
5226
- "Les *memoryviews* peut maintenant être indexées par un tuple d'entiers."
5225
+ "les *memoryviews* peut maintenant être indexées par un n-uplet d'entiers."
5227
5226
5228
5227
#: ../Doc/library/stdtypes.rst:3534
5229
5228
msgid ":class:`memoryview` has several methods:"
@@ -5404,7 +5403,6 @@ msgid "The underlying object of the memoryview::"
5404
5403
msgstr "L'objet sous-jacent de la *memoryview* : ::"
5405
5404
5406
5405
#: ../Doc/library/stdtypes.rst:3768
5407
- #, fuzzy
5408
5406
msgid ""
5409
5407
"``nbytes == product(shape) * itemsize == len(m.tobytes())``. This is the "
5410
5408
"amount of space in bytes that the array would use in a contiguous "
@@ -5439,7 +5437,7 @@ msgid ""
5439
5437
"format ``'B'`` is now handled according to the struct module syntax. This "
5440
5438
"means that ``memoryview(b'abc')[0] == b'abc'[0] == 97``."
5441
5439
msgstr ""
5442
- "Le format ``'B'`` est maintenant traité selon la syntaxe du module *struct*. "
5440
+ "le format ``'B'`` est maintenant traité selon la syntaxe du module *struct*. "
5443
5441
"Cela signifie que ``memoryview(b'abc')[0] == b'abc'[0] == 97``."
5444
5442
5445
5443
#: ../Doc/library/stdtypes.rst:3819
@@ -6147,7 +6145,6 @@ msgstr ""
6147
6145
"insérées à la fin. ::"
6148
6146
6149
6147
#: ../Doc/library/stdtypes.rst:4289
6150
- #, fuzzy
6151
6148
msgid ""
6152
6149
"Dictionary order is guaranteed to be insertion order. This behavior was an "
6153
6150
"implementation detail of CPython from 3.6."
@@ -6269,22 +6266,21 @@ msgid ""
6269
6266
"before the statement body is executed and exited when the statement ends:"
6270
6267
msgstr ""
6271
6268
"L'instruction :keyword:`with` permet l'existence de contextes définis à "
6272
- "l'exécution par des gestionnaires de contextes. C'est implémenté via une "
6269
+ "l'exécution par des gestionnaires de contextes. C'est implémenté via une "
6273
6270
"paire de méthodes permettant de définir un contexte, à l'exécution, qui est "
6274
6271
"entré avant l'exécution du corps de l'instruction, et qui est quitté lorsque "
6275
6272
"l'instruction se termine :"
6276
6273
6277
6274
#: ../Doc/library/stdtypes.rst:4394
6278
- #, fuzzy
6279
6275
msgid ""
6280
6276
"Enter the runtime context and return either this object or another object "
6281
6277
"related to the runtime context. The value returned by this method is bound "
6282
6278
"to the identifier in the :keyword:`!as` clause of :keyword:`with` statements "
6283
6279
"using this context manager."
6284
6280
msgstr ""
6285
6281
"Entre dans le contexte à l'exécution, soit se renvoyant lui-même, soit en "
6286
- "renvoyant un autre objet en lien avec ce contexte. La valeur renvoyée par "
6287
- "cette méthode est liée à l'identifiant donné au :keyword:`as` de "
6282
+ "renvoyant un autre objet en lien avec ce contexte. La valeur renvoyée par "
6283
+ "cette méthode est liée à l'identifiant donné au :keyword:`! as` de "
6288
6284
"l'instruction :keyword:`with` utilisant ce gestionnaire de contexte."
6289
6285
6290
6286
#: ../Doc/library/stdtypes.rst:4399
@@ -6299,7 +6295,6 @@ msgstr ""
6299
6295
"keyword:`with`."
6300
6296
6301
6297
#: ../Doc/library/stdtypes.rst:4403
6302
- #, fuzzy
6303
6298
msgid ""
6304
6299
"An example of a context manager that returns a related object is the one "
6305
6300
"returned by :func:`decimal.localcontext`. These managers set the active "
@@ -6312,7 +6307,7 @@ msgstr ""
6312
6307
"renvoyé par :func:`decimal.localcontext`. Ces gestionnaires remplacent le "
6313
6308
"contexte décimal courant par une copie de l'original, copie qui est "
6314
6309
"renvoyée. Ça permet de changer le contexte courant dans le corps du :keyword:"
6315
- "`with` sans affecter le code en dehors de l'instruction :keyword:`with`."
6310
+ "`with` sans affecter le code en dehors de l'instruction :keyword:`! with`."
6316
6311
6317
6312
#: ../Doc/library/stdtypes.rst:4413
6318
6313
msgid ""
@@ -6329,7 +6324,6 @@ msgstr ""
6329
6324
"trois arguments valent ``None``."
6330
6325
6331
6326
#: ../Doc/library/stdtypes.rst:4418
6332
- #, fuzzy
6333
6327
msgid ""
6334
6328
"Returning a true value from this method will cause the :keyword:`with` "
6335
6329
"statement to suppress the exception and continue execution with the "
@@ -6341,10 +6335,10 @@ msgid ""
6341
6335
msgstr ""
6342
6336
"L'instruction :keyword:`with` inhibera l'exception si cette méthode renvoie "
6343
6337
"une valeur vraie, l'exécution continuera ainsi à l'instruction suivant "
6344
- "immédiatement l'instruction :keyword:`with`. Sinon, l'exception continuera "
6338
+ "immédiatement l'instruction :keyword:`! with`. Sinon, l'exception continuera "
6345
6339
"de se propager après la fin de cette méthode. Les exceptions se produisant "
6346
6340
"pendant l'exécution de cette méthode remplaceront toute exception qui s'est "
6347
- "produite dans le corps du :keyword:`with`."
6341
+ "produite dans le corps du :keyword:`! with`."
6348
6342
6349
6343
#: ../Doc/library/stdtypes.rst:4425
6350
6344
msgid ""
0 commit comments