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

61 lines
2.7 KiB
Plaintext
Raw Permalink 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\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-08-24 09:01+0200\n"
"PO-Revision-Date: 2018-07-29 00:46+0200\n"
"Last-Translator: Julien Palard <juilen@palard.fr>\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"
#: library/builtins.rst:2
msgid ":mod:`builtins` --- Built-in objects"
msgstr ":mod:`builtins` — Objets natifs"
#: library/builtins.rst:9
msgid ""
"This module provides direct access to all 'built-in' identifiers of Python; "
"for example, ``builtins.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, ``builtins.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."
#: library/builtins.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 ::"
#: library/builtins.rst:38
msgid ""
"As an implementation detail, most modules have the name ``__builtins__`` "
"made available as part of their globals. The value of ``__builtins__`` is "
"normally either this module or the value of this module's :attr:`~object."
"__dict__` attribute. Since this is an implementation detail, it may not be "
"used by alternate implementations of Python."
msgstr ""
"Spécificité de l'implémentation: La plupart des modules ont ``__builtins__`` "
"dans leurs globales. La valeur de ``__builtins__`` est classiquement soit "
"ce module, soit la valeur de l'attribut :attr:`~object.__dict__` du module. "
"Puisque c'est une spécificité de CPython, ce n'est peut-être pas utilisé par "
"toutes les autres implémentations."