1
0
Fork 0

tutorial/inputoutput.po (#1508)

Automerge of PR #1508 by @JulienPalard

Co-authored-by: Christophe Nanteuil <35002064+christopheNan@users.noreply.github.com>
This commit is contained in:
Julien Palard 2020-12-27 12:23:04 +01:00 committed by GitHub
parent 13afffa4ad
commit b17122d389
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 8 additions and 1 deletions

View File

@ -6,7 +6,7 @@ msgstr ""
"Project-Id-Version: Python 3\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-12-17 16:05+0100\n"
"PO-Revision-Date: 2020-11-18 16:55+0100\n"
"PO-Revision-Date: 2020-12-23 19:23+0100\n"
"Last-Translator: Jules Lasne <jules.lasne@gmail.com>\n"
"Language-Team: FRENCH <traductions@lists.afpy.org>\n"
"Language: fr\n"
@ -433,6 +433,9 @@ msgid ""
"close()`` to close the file and immediately free up any system resources "
"used by it."
msgstr ""
"Si vous n'utilisez pas le mot clé :keyword:`with`, vous devez appeler ``f."
"close()`` pour fermer le fichier, et ainsi immédiatement libérer les "
"ressources qu'il utilise."
#: tutorial/inputoutput.rst:335
msgid ""
@ -440,6 +443,10 @@ msgid ""
"``f.close()`` **might** result in the arguments of ``f.write()`` not being "
"completely written to the disk, even if the program exits successfully."
msgstr ""
"Appeler ``f.write()`` sans utiliser le mot clé :keyword:`!with` ni appeler "
"``f.close()`` **pourrait** mener à une situation où les arguments de ``f."
"write()`` ne seraient pas complètement écrits sur le disque, même si le "
"programme se termine avec succès."
#: tutorial/inputoutput.rst:343
msgid ""