# Copyright (C) 2001-2018, 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: 2018-06-28 15:29+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" "Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #: ../Doc/library/token.rst:2 msgid ":mod:`token` --- Constants used with Python parse trees" msgstr "" #: ../Doc/library/token.rst:9 msgid "**Source code:** :source:`Lib/token.py`" msgstr "**Code source :** :source:`Lib/token.py`" #: ../Doc/library/token.rst:13 msgid "" "This module provides constants which represent the numeric values of leaf " "nodes of the parse tree (terminal tokens). Refer to the file :file:`Grammar/" "Grammar` in the Python distribution for the definitions of the names in the " "context of the language grammar. The specific numeric values which the " "names map to may change between Python versions." msgstr "" #: ../Doc/library/token.rst:19 msgid "" "The module also provides a mapping from numeric codes to names and some " "functions. The functions mirror definitions in the Python C header files." msgstr "" #: ../Doc/library/token.rst:25 msgid "" "Dictionary mapping the numeric values of the constants defined in this " "module back to name strings, allowing more human-readable representation of " "parse trees to be generated." msgstr "" "Dictionnaire faisant correpondre les valeurs numériques des constantes " "définies dans ce module à leurs noms, permettant de générer une " "représentation plus humaine des arbres syntaxiques." #: ../Doc/library/token.rst:32 msgid "Return true for terminal token values." msgstr "" #: ../Doc/library/token.rst:37 msgid "Return true for non-terminal token values." msgstr "" #: ../Doc/library/token.rst:42 msgid "Return true if *x* is the marker indicating the end of input." msgstr "" #: ../Doc/library/token.rst:45 msgid "The token constants are:" msgstr "" #: ../Doc/library/token.rst:106 msgid "" "The following token type values aren't used by the C tokenizer but are " "needed for the :mod:`tokenize` module." msgstr "" #: ../Doc/library/token.rst:111 msgid "Token value used to indicate a comment." msgstr "" #: ../Doc/library/token.rst:116 msgid "" "Token value used to indicate a non-terminating newline. The :data:`NEWLINE` " "token indicates the end of a logical line of Python code; ``NL`` tokens are " "generated when a logical line of code is continued over multiple physical " "lines." msgstr "" #: ../Doc/library/token.rst:124 msgid "" "Token value that indicates the encoding used to decode the source bytes into " "text. The first token returned by :func:`tokenize.tokenize` will always be " "an ``ENCODING`` token." msgstr "" #: ../Doc/library/token.rst:129 msgid "Added :data:`AWAIT` and :data:`ASYNC` tokens." msgstr "" #: ../Doc/library/token.rst:132 msgid "Added :data:`COMMENT`, :data:`NL` and :data:`ENCODING` tokens." msgstr "" #: ../Doc/library/token.rst:135 msgid "" "Removed :data:`AWAIT` and :data:`ASYNC` tokens. \"async\" and \"await\" are " "now tokenized as :data:`NAME` tokens." msgstr ""