1
0
Fork 0
python-docs-fr/library/codeop.po

156 lines
6.7 KiB
Plaintext
Raw Normal View History

2018-07-04 09:06:45 +00:00
# Copyright (C) 2001-2018, Python Software Foundation
2018-07-04 09:08:42 +00:00
# For licence information, see README file.
2016-10-30 09:46:26 +00:00
#
msgid ""
msgstr ""
2019-12-05 22:15:54 +00:00
"Project-Id-Version: Python 3\n"
2016-10-30 09:46:26 +00:00
"Report-Msgid-Bugs-To: \n"
2023-04-14 11:20:40 +00:00
"POT-Creation-Date: 2023-04-14 13:19+0200\n"
"PO-Revision-Date: 2021-11-06 20:25+0100\n"
"Last-Translator: Jean Abou Samra <jean@abou-samra.fr>\n"
2018-07-04 09:14:25 +00:00
"Language-Team: FRENCH <traductions@lists.afpy.org>\n"
2017-05-23 22:40:56 +00:00
"Language: fr\n"
2016-10-30 09:46:26 +00:00
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Poedit 3.0\n"
2016-10-30 09:46:26 +00:00
#: library/codeop.rst:2
2016-10-30 09:46:26 +00:00
msgid ":mod:`codeop` --- Compile Python code"
msgstr ":mod:`codeop` — Compilation de code Python"
2016-10-30 09:46:26 +00:00
#: library/codeop.rst:10
2016-10-30 09:46:26 +00:00
msgid "**Source code:** :source:`Lib/codeop.py`"
2018-11-14 21:31:38 +00:00
msgstr "**Code source:** :source:`Lib/codeop.py`"
2016-10-30 09:46:26 +00:00
#: library/codeop.rst:14
2016-10-30 09:46:26 +00:00
msgid ""
"The :mod:`codeop` module provides utilities upon which the Python read-eval-"
"print loop can be emulated, as is done in the :mod:`code` module. As a "
"result, you probably don't want to use the module directly; if you want to "
"include such a loop in your program you probably want to use the :mod:`code` "
"module instead."
msgstr ""
2018-11-13 22:17:22 +00:00
"Le module :mod:`codeop` fournit des outils permettant d'émuler une boucle de "
"lecture-évaluation-affichage (en anglais *read-eval-print-loop* ou REPL), "
2018-11-14 22:30:26 +00:00
"comme dans le module :mod:`code`. Par conséquent, ce module n'est pas "
"destiné à être utilisé directement; pour inclure un REPL dans un programme, "
"il est préférable d'utiliser le module :mod:`code`."
2016-10-30 09:46:26 +00:00
#: library/codeop.rst:20
2016-10-30 09:46:26 +00:00
msgid "There are two parts to this job:"
msgstr "Cette tâche se divise en deux parties :"
2016-10-30 09:46:26 +00:00
#: library/codeop.rst:22
2023-04-14 11:20:40 +00:00
#, fuzzy
2016-10-30 09:46:26 +00:00
msgid ""
2023-04-14 11:20:40 +00:00
"Being able to tell if a line of input completes a Python statement: in "
2016-10-30 09:46:26 +00:00
"short, telling whether to print '``>>>``' or '``...``' next."
msgstr ""
2018-11-13 22:17:22 +00:00
"Pouvoir affirmer qu'une ligne d'entrée est une instruction complète, ou "
2018-11-14 21:31:38 +00:00
"achève une instruction: en bref, savoir s'il faut afficher « ``>>>`` » ou "
"« ``...`` » à sa suite."
2016-10-30 09:46:26 +00:00
#: library/codeop.rst:25
2023-04-14 11:20:40 +00:00
#, fuzzy
2016-10-30 09:46:26 +00:00
msgid ""
2023-04-14 11:20:40 +00:00
"Remembering which future statements the user has entered, so subsequent "
2016-10-30 09:46:26 +00:00
"input can be compiled with these in effect."
msgstr ""
"Conserver les instructions déjà entrées par l'utilisateur, afin que les "
2018-11-13 22:17:22 +00:00
"entrées suivantes puissent êtres compilées avec elles."
2016-10-30 09:46:26 +00:00
#: library/codeop.rst:28
2016-10-30 09:46:26 +00:00
msgid ""
"The :mod:`codeop` module provides a way of doing each of these things, and a "
"way of doing them both."
msgstr ""
2018-11-13 22:17:22 +00:00
"Le module :mod:`codeop` fournit un moyen d'effectuer ces deux parties, "
"individuellement ou simultanément."
2016-10-30 09:46:26 +00:00
#: library/codeop.rst:31
2016-10-30 09:46:26 +00:00
msgid "To do just the former:"
msgstr "Pour ne faire que la première partie :"
2016-10-30 09:46:26 +00:00
#: library/codeop.rst:35
2023-04-14 11:20:40 +00:00
#, fuzzy
2016-10-30 09:46:26 +00:00
msgid ""
"Tries to compile *source*, which should be a string of Python code and "
2023-04-14 11:20:40 +00:00
"return a code object if *source* is valid Python code. In that case, the "
2016-10-30 09:46:26 +00:00
"filename attribute of the code object will be *filename*, which defaults to "
2023-04-14 11:20:40 +00:00
"``'<input>'``. Returns ``None`` if *source* is *not* valid Python code, but "
2016-10-30 09:46:26 +00:00
"is a prefix of valid Python code."
msgstr ""
2018-11-13 22:17:22 +00:00
"Essaye de compiler *source*, qui doit être une chaîne de caractères "
"représentant du code Python valide et renvoie un objet code le cas échéant. "
"Dans ce cas, l'attribut de nom de fichier de l'objet code renvoyé sera "
"*filename* (``'<input>'`` par défaut). Renvoie ``None`` si *source* n'est "
2018-11-15 22:27:26 +00:00
"*pas* du code Python valide, mais un *début* de code Python valide."
2016-10-30 09:46:26 +00:00
#: library/codeop.rst:41
2016-10-30 09:46:26 +00:00
msgid ""
"If there is a problem with *source*, an exception will be raised. :exc:"
"`SyntaxError` is raised if there is invalid Python syntax, and :exc:"
"`OverflowError` or :exc:`ValueError` if there is an invalid literal."
msgstr ""
2018-11-13 22:17:22 +00:00
"En cas de problème avec *source*, une exception est levée; :exc:"
"`SyntaxError` si la syntaxe Python est incorrecte, et :exc:`OverflowError` "
"ou :exc:`ValueError` si un littéral invalide est rencontré."
2016-10-30 09:46:26 +00:00
#: library/codeop.rst:45
2023-04-14 11:20:40 +00:00
#, fuzzy
2016-10-30 09:46:26 +00:00
msgid ""
"The *symbol* argument determines whether *source* is compiled as a statement "
2023-04-14 11:20:40 +00:00
"(``'single'``, the default), as a sequence of :term:`statement` (``'exec'``) "
"or as an :term:`expression` (``'eval'``). Any other value will cause :exc:"
"`ValueError` to be raised."
2016-10-30 09:46:26 +00:00
msgstr ""
2018-11-13 22:17:22 +00:00
"L'argument *symbol* détermine si *source* est compilée comme une instruction "
"(``'single'``, par défaut), comme une suite d'instructions (``'exec'``), ou "
"comme une :term:`expression` (``'eval'``). Toute autre valeur lèvera :exc:"
"`ValueError`."
2016-10-30 09:46:26 +00:00
#: library/codeop.rst:52
2016-10-30 09:46:26 +00:00
msgid ""
"It is possible (but not likely) that the parser stops parsing with a "
"successful outcome before reaching the end of the source; in this case, "
"trailing symbols may be ignored instead of causing an error. For example, a "
"backslash followed by two newlines may be followed by arbitrary garbage. "
"This will be fixed once the API for the parser is better."
msgstr ""
2018-11-13 22:17:22 +00:00
"Il est possible (quoique improbable) que l'analyseur s'arrête avant "
2018-11-14 21:31:38 +00:00
"d'atteindre la fin du code source; dans ce cas, les symboles venant après "
2018-11-13 22:17:22 +00:00
"peuvent être ignorés au lieu de provoquer une erreur. Par exemple, une barre "
"oblique inverse suivie de deux retours à la ligne peut être suivie par de la "
"mémoire non-initialisée. Ceci sera corrigé quand l'interface de l'analyseur "
"aura été améliorée."
2016-10-30 09:46:26 +00:00
#: library/codeop.rst:61
2016-10-30 09:46:26 +00:00
msgid ""
"Instances of this class have :meth:`__call__` methods identical in signature "
"to the built-in function :func:`compile`, but with the difference that if "
"the instance compiles program text containing a :mod:`__future__` statement, "
"the instance 'remembers' and compiles all subsequent program texts with the "
"statement in force."
msgstr ""
2018-11-13 22:17:22 +00:00
"Les instances de cette classe ont des méthodes :meth:`__call__` de signature "
"identique à la fonction native :func:`compile`, à la différence près que si "
"l'instance compile du code source contenant une instruction :mod:"
"`__future__`, l'instance s'en «souviendra» et compilera tous les codes "
"sources suivants avec cette instruction activée."
2016-10-30 09:46:26 +00:00
#: library/codeop.rst:70
2023-04-14 11:20:40 +00:00
#, fuzzy
2016-10-30 09:46:26 +00:00
msgid ""
"Instances of this class have :meth:`__call__` methods identical in signature "
"to :func:`compile_command`; the difference is that if the instance compiles "
2023-04-14 11:20:40 +00:00
"program text containing a :mod:`__future__` statement, the instance "
"'remembers' and compiles all subsequent program texts with the statement in "
"force."
2016-10-30 09:46:26 +00:00
msgstr ""
2018-11-13 22:17:22 +00:00
"Les instances de cette classe ont des méthodes :meth:`__call__` de signature "
"identique à la fonction :func:`compile_command`, à la différence près que si "
"l'instance compile du code source contenant une instruction ``__future__``, "
"l'instance s'en «souviendra» et compilera tous les codes sources suivants "
"avec cette instruction activée."