python-docs-fr/library/rlcompleter.po
2018-10-04 09:52:44 +02:00

112 lines
4.6 KiB
Plaintext
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# Copyright (C) 2001-2018, Python Software Foundation
# For licence information, see README file.
#
msgid ""
msgstr ""
"Project-Id-Version: Python 3.6\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-04-02 22:11+0200\n"
"PO-Revision-Date: 2018-07-12 22:35+0200\n"
"Language-Team: FRENCH <traductions@lists.afpy.org>\n"
"Language: fr\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Last-Translator: \n"
"X-Generator: Poedit 1.8.11\n"
#: ../Doc/library/rlcompleter.rst:2
msgid ":mod:`rlcompleter` --- Completion function for GNU readline"
msgstr ":mod:`rlcompleter` --- Fonction de complétion pour GNU readline"
#: ../Doc/library/rlcompleter.rst:9
msgid "**Source code:** :source:`Lib/rlcompleter.py`"
msgstr "**Source code:** :source:`Lib/rlcompleter.py`"
#: ../Doc/library/rlcompleter.rst:13
msgid ""
"The :mod:`rlcompleter` module defines a completion function suitable for "
"the :mod:`readline` module by completing valid Python identifiers and "
"keywords."
msgstr ""
"Le module :mod:`rlcompleter` définit une fonction de complétion appropriée "
"pour le module :mod:`readline` en complétant des identifiants et mots-clés "
"Python valides. "
#: ../Doc/library/rlcompleter.rst:16
msgid ""
"When this module is imported on a Unix platform with the :mod:`readline` "
"module available, an instance of the :class:`Completer` class is "
"automatically created and its :meth:`complete` method is set as the :mod:"
"`readline` completer."
msgstr ""
"Quand le module est importé dans une plate-forme Unix et que le module :mod:"
"`readline` est disponible, une instance de classe :class:`Completer` est "
"automatiquement créée et la méthode est configurée au finisseur :meth:"
"`complete` "
#: ../Doc/library/rlcompleter.rst:20
msgid "Example::"
msgstr "Exemple ::"
#: ../Doc/library/rlcompleter.rst:31
msgid ""
"The :mod:`rlcompleter` module is designed for use with Python's :ref:"
"`interactive mode <tut-interactive>`. Unless Python is run with the :option:"
"`-S` option, the module is automatically imported and configured (see :ref:"
"`rlcompleter-config`)."
msgstr ""
"Le module :mod:`rlcompleter` est conçu pour être utilisé par le mode "
"interactif Python :ref:`interactive mode <tut-interactive>`. A moins que "
"Python ne soit exécuté avec l'option :option:`-S`, le module sera "
"automatiquement importé et configuré (see :ref:`rlcompleter-config`)."
#: ../Doc/library/rlcompleter.rst:36
msgid ""
"On platforms without :mod:`readline`, the :class:`Completer` class defined "
"by this module can still be used for custom purposes."
msgstr ""
"Sur les plate-formes sans :mod:`readline`, la classe :class:`Completer` "
"définie par ce module peut quand même être utilisée pour des fins "
"personnalisées."
#: ../Doc/library/rlcompleter.rst:43
msgid "Completer Objects"
msgstr "Objets complémentaires (Completer Objects)"
#: ../Doc/library/rlcompleter.rst:45
msgid "Completer objects have the following method:"
msgstr ""
"Les objets complémentaires (Completer objects) dispose de la méthode "
"suivante:"
#: ../Doc/library/rlcompleter.rst:50
msgid "Return the *state*\\ th completion for *text*."
msgstr "Renvoie le *state*\\ th complet pour *text*."
#: ../Doc/library/rlcompleter.rst:52
msgid ""
"If called for *text* that doesn't include a period character (``'.'``), it "
"will complete from names currently defined in :mod:`__main__`, :mod:"
"`builtins` and keywords (as defined by the :mod:`keyword` module)."
msgstr ""
"Si *text* ne contient pas un caractère point (``'.'``), il ira puiser dans "
"les noms actuellement définis dans :mod:`__main__`, :mod:`builtins` ainsi "
"que les mots clés (tel que définit par le module :mod:`keyword`)"
#: ../Doc/library/rlcompleter.rst:56
msgid ""
"If called for a dotted name, it will try to evaluate anything without "
"obvious side-effects (functions will not be evaluated, but it can generate "
"calls to :meth:`__getattr__`) up to the last part, and find matches for the "
"rest via the :func:`dir` function. Any exception raised during the "
"evaluation of the expression is caught, silenced and :const:`None` is "
"returned."
msgstr ""
"Quand appelé pour un nom en pointillé, il tentera d'analyser n'importe quoi "
"sans effets collatérales significatifs (les fonctions ne seront pas "
"évaluées, mais cela va générer des appels à :meth:`__getattr__`), jusqu'à la "
"dernière partie, et trouvera des équivalents pour le reste via la fonction :"
"func:`dir`. Toute exception qui est relevée durant l'évaluation de "
"l'expression est soit attrapée, tue, ou :const:`None` est renvoyée. "