@@ -6,15 +6,15 @@ msgstr ""
6
6
"Project-Id-Version : Python 3\n "
7
7
"Report-Msgid-Bugs-To : \n "
8
8
"POT-Creation-Date : 2023-03-22 22:57+0100\n "
9
- "PO-Revision-Date : 2022-01-27 22:46+0100 \n "
10
- "Last-Translator : Antoine Wecxsteen \n "
9
+ "PO-Revision-Date : 2023-04-26 20:31+0200 \n "
10
+ "Last-Translator : Mathieu Dupuy \n "
11
11
"Language-Team : FRENCH <traductions@lists.afpy.org>\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
16
"Plural-Forms : nplurals=2; plural=(n > 1);\n "
17
- "X-Generator : Poedit 2.3 \n "
17
+ "X-Generator : Poedit 3.2.2 \n "
18
18
19
19
#: library/functions.rst:11
20
20
msgid "Built-in Functions"
@@ -2131,7 +2131,6 @@ msgstr ""
2131
2131
"ref:`tut-files` pour plus d'exemple d'utilisation de cette fonction."
2132
2132
2133
2133
#: library/functions.rst:1130
2134
- #, fuzzy
2135
2134
msgid ""
2136
2135
"*file* is a :term:`path-like object` giving the pathname (absolute or "
2137
2136
"relative to the current working directory) of the file to be opened or an "
@@ -2146,7 +2145,6 @@ msgstr ""
2146
2145
"d'entrée-sortie renvoyé, sauf si *closefd* est mis à ``False``)."
2147
2146
2148
2147
#: library/functions.rst:1136
2149
- #, fuzzy
2150
2148
msgid ""
2151
2149
"*mode* is an optional string that specifies the mode in which the file is "
2152
2150
"opened. It defaults to ``'r'`` which means open for reading in text mode. "
@@ -2210,7 +2208,6 @@ msgid "``'a'``"
2210
2208
msgstr "``'a'``"
2211
2209
2212
2210
#: library/functions.rst:1158
2213
- #, fuzzy
2214
2211
msgid "open for writing, appending to the end of file if it exists"
2215
2212
msgstr "ouvre en écriture, ajoutant à la fin du fichier s'il existe"
2216
2213
@@ -2239,7 +2236,6 @@ msgid "open for updating (reading and writing)"
2239
2236
msgstr "ouvre en modification (lecture et écriture)"
2240
2237
2241
2238
#: library/functions.rst:1164
2242
- #, fuzzy
2243
2239
msgid ""
2244
2240
"The default mode is ``'r'`` (open for reading text, a synonym of ``'rt'``). "
2245
2241
"Modes ``'w+'`` and ``'w+b'`` open and truncate the file. Modes ``'r+'`` and "
@@ -2268,7 +2264,6 @@ msgstr ""
2268
2264
"l'environnement ou *encoding* s'il est donné."
2269
2265
2270
2266
#: library/functions.rst:1176
2271
- #, fuzzy
2272
2267
msgid ""
2273
2268
"There is an additional mode character permitted, ``'U'``, which no longer "
2274
2269
"has any effect, and is considered deprecated. It previously enabled :term:"
@@ -2294,7 +2289,6 @@ msgstr ""
2294
2289
"indépendant de la plate-forme."
2295
2290
2296
2291
#: library/functions.rst:1188
2297
- #, fuzzy
2298
2292
msgid ""
2299
2293
"*buffering* is an optional integer used to set the buffering policy. Pass 0 "
2300
2294
"to switch buffering off (only allowed in binary mode), 1 to select line "
@@ -2306,11 +2300,16 @@ msgid ""
2306
2300
"for :func:`io.TextIOWrapper.reconfigure`. When no *buffering* argument is "
2307
2301
"given, the default buffering policy works as follows:"
2308
2302
msgstr ""
2309
- "*buffering* est un entier optionnel permettant de configurer l' espace "
2310
- "tampon. 0 pour désactiver l' espace tampon (seulement autorisé en mode "
2303
+ "*buffering* est un entier optionnel permettant de configurer l’ espace "
2304
+ "tampon. 0 pour désactiver l’ espace tampon (seulement autorisé en mode "
2311
2305
"binaire), 1 pour avoir un *buffer* travaillant ligne par ligne (seulement "
2312
2306
"disponible en mode texte), ou un entier supérieur à 1 pour donner la taille "
2313
- "en octets d'un tampon de taille fixe. Sans l'argument *buffering*, les "
2307
+ "en octets d’un tampon de taille fixe. Notez que spécifier une taille de "
2308
+ "tampon de cette manière s'applique aux E/S binaires, mais que "
2309
+ "``TextIOWrapper`` (c'est-à-dire les fichiers ouverts avec ``mode='r+'``) "
2310
+ "aurait un autre tampon. Pour désactiver la mise en mémoire tampon dans "
2311
+ "``TextIOWrapper``, envisagez d'utiliser le drapeau ``write_through`` pour :"
2312
+ "func:`io.TextIOWrapper.reconfigure`.Sans l’argument *buffering*, les "
2314
2313
"comportements par défaut sont les suivants :"
2315
2314
2316
2315
#: library/functions.rst:1198
0 commit comments