python-docs-fr/library/__builtin__.po

58 lines
2.5 KiB
Plaintext

# SOME DESCRIPTIVE TITLE.
# Copyright (C) 1990-2016, Python Software Foundation
# This file is distributed under the same license as the Python package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: Python 2.7\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-10-30 10:44+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: ../Doc/library/__builtin__.rst:3
msgid ":mod:`__builtin__` --- Built-in objects"
msgstr ":mod:`__builtin__` --- Objets natifs"
#: ../Doc/library/__builtin__.rst:9
msgid ""
"This module provides direct access to all 'built-in' identifiers of Python; "
"for example, ``__builtin__.open`` is the full name for the built-in "
"function :func:`open`. See :ref:`built-in-funcs` and :ref:`built-in-consts` "
"for documentation."
msgstr ""
"Ce module fournit un accès direct aux identifiants 'natifs' de Python; par "
"exemple, ``__builtin__.open`` est le nom complet pour la fonction native :"
"func:`open`. Voir :ref:`built-in-funcs` et :ref:`built-in-consts` pour plus "
"de documentation."
#: ../Doc/library/__builtin__.rst:15
msgid ""
"This module is not normally accessed explicitly by most applications, but "
"can be useful in modules that provide objects with the same name as a built-"
"in value, but in which the built-in of that name is also needed. For "
"example, in a module that wants to implement an :func:`open` function that "
"wraps the built-in :func:`open`, this module can be used directly::"
msgstr ""
"Ce module n'est normalement pas accédé explicitement par la plupart des "
"applications, mais peut être utile dans des modules qui exposent des objets "
"de même nom qu'une valeur native, mais pour qui le natif de même nom est "
"aussi nécessaire. Par exemple, dans un module qui voudrait implémenter une "
"fonction :func:`open` autour de la fonction native :func:`open`, ce module "
"peut être utilisé directement : ::"
#: ../Doc/library/__builtin__.rst:40
msgid ""
"Most modules have the name ``__builtins__`` (note the ``'s'``) made "
"available as part of their globals. The value of ``__builtins__`` is "
"normally either this module or the value of this modules's :attr:`~object."
"__dict__` attribute. Since this is an implementation detail, it may not be "
"used by alternate implementations of Python."
msgstr ""