# SOME DESCRIPTIVE TITLE. # Copyright (C) 2001-2016, Python Software Foundation # This file is distributed under the same license as the Python package. # FIRST AUTHOR , YEAR. # #, fuzzy 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: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #: ../Doc/library/rlcompleter.rst:2 msgid ":mod:`rlcompleter` --- Completion function for GNU readline" msgstr "" #: ../Doc/library/rlcompleter.rst:9 msgid "**Source code:** :source:`Lib/rlcompleter.py`" msgstr "" #: ../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 "" #: ../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 "" #: ../Doc/library/rlcompleter.rst:20 msgid "Example::" msgstr "Exemples ::" #: ../Doc/library/rlcompleter.rst:31 msgid "" "The :mod:`rlcompleter` module is designed for use with Python's :ref:" "`interactive mode `. Unless Python is run with the :option:" "`-S` option, the module is automatically imported and configured (see :ref:" "`rlcompleter-config`)." msgstr "" #: ../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 "" #: ../Doc/library/rlcompleter.rst:43 msgid "Completer Objects" msgstr "" #: ../Doc/library/rlcompleter.rst:45 msgid "Completer objects have the following method:" msgstr "" #: ../Doc/library/rlcompleter.rst:50 msgid "Return the *state*\\ th completion for *text*." msgstr "" #: ../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 "" #: ../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 ""