python-docs-fr/c-api/frame.po

128 lines
4.7 KiB
Plaintext
Raw Normal View History

# Copyright (C) 2001-2018, Python Software Foundation
# For licence information, see README file.
2022-03-23 17:40:12 +00:00
#
msgid ""
msgstr ""
"Project-Id-Version: Python 3\n"
2022-03-23 17:40:12 +00:00
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-01-15 22:33+0100\n"
2022-05-22 21:15:02 +00:00
"PO-Revision-Date: 2022-05-23 00:48+0200\n"
2022-03-23 17:40:12 +00:00
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
2022-05-22 21:15:02 +00:00
"Language-Team: FRENCH <traductions@lists.afpy.org>\n"
"Language: fr\n"
2022-03-23 17:40:12 +00:00
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: c-api/frame.rst:4
msgid "Frame Objects"
2023-02-21 09:21:44 +00:00
msgstr "Objets décrivant les *frames*"
2022-03-23 17:40:12 +00:00
#: c-api/frame.rst:8
msgid "The C structure of the objects used to describe frame objects."
2023-02-17 10:49:25 +00:00
msgstr "Structure des objets C utilisée pour décrire les objets *frame*."
2022-03-23 17:40:12 +00:00
#: c-api/frame.rst:10
2022-05-22 21:15:02 +00:00
msgid "There are no public members in this structure."
2023-02-16 15:57:40 +00:00
msgstr "Il n'y a pas de membres publics dans cette structure."
2022-03-23 17:40:12 +00:00
#: c-api/frame.rst:12
2022-05-22 21:15:02 +00:00
msgid ""
"The members of this structure were removed from the public C API. Refer to "
"the :ref:`What's New entry <pyframeobject-3.11-hiding>` for details."
2023-02-21 09:21:44 +00:00
msgstr "Les membres de la structure API publique ont été retirés de l'API publique de C. Visiter "
2023-02-17 10:49:25 +00:00
":ref:`l'entrée dans la page des nouveautés de Python <pyframeobject-3.11-hiding>` pour plus détails."
2022-03-23 17:40:12 +00:00
2022-05-22 21:15:02 +00:00
#: c-api/frame.rst:17
2022-03-23 17:40:12 +00:00
msgid ""
"The :c:func:`PyEval_GetFrame` and :c:func:`PyThreadState_GetFrame` functions "
"can be used to get a frame object."
2023-02-17 10:49:25 +00:00
msgstr "Les fonctions :func:`PyEval_GetFrame` and :c:func:`PyThreadState_GetFrame` "
"peuvent être utilisées pour avoir un objet de *frame*."
2022-03-23 17:40:12 +00:00
2022-05-22 21:15:02 +00:00
#: c-api/frame.rst:20
2022-03-23 17:40:12 +00:00
msgid "See also :ref:`Reflection <reflection>`."
2023-02-17 10:49:25 +00:00
msgstr "Voir aussi :ref:`<reflection>`"
2022-03-23 17:40:12 +00:00
#: c-api/frame.rst:24
msgid ""
"The type of frame objects. It is the same object as :py:class:`types."
"FrameType` in the Python layer."
2023-02-16 15:57:40 +00:00
msgstr "Le type des objets de *frame*. C'est le même objet que :py:class:`types."
"FrameType` dans la couche de Python."
#: c-api/frame.rst:29
2023-02-16 15:57:40 +00:00
msgid "Previously, this type was only available after including ``<frameobject.h>``."
msgstr "Précédemment, ce type était disponible uniquement après l'inclusion de ``<frameobject.h>``."
#: c-api/frame.rst:34
msgid "Return non-zero if *obj* is a frame object."
2023-02-17 10:49:25 +00:00
msgstr "Renvoie un entier non nul si *obj* est un objet *frame*."
#: c-api/frame.rst:38
msgid ""
"Previously, this function was only available after including ``<frameobject."
"h>``."
2023-02-16 15:57:40 +00:00
msgstr "Précédemment, ce type était disponible uniquement après l'inclusion de ``<frameobject.h>``."
#: c-api/frame.rst:43
2022-03-23 17:40:12 +00:00
msgid "Get the *frame* next outer frame."
2023-02-17 10:49:25 +00:00
msgstr "Renvoie la *frame* encadrant immédiatement à *frame*."
2022-03-23 17:40:12 +00:00
#: c-api/frame.rst:45
2023-02-16 15:57:40 +00:00
msgid "Return a :term:`strong reference`, or ``NULL`` if *frame* has no outer frame."
2023-02-17 10:49:25 +00:00
msgstr "Renvoie un :term:`strong reference`, ou ``NULL`` si *frame* n'a pas de *frame* encadrante."
2022-03-23 17:40:12 +00:00
#: c-api/frame.rst:53
2022-05-22 21:15:02 +00:00
msgid "Get the *frame*'s ``f_builtins`` attribute."
2023-02-16 15:57:40 +00:00
msgstr "Obtenir l'attribut ``f_buitins`` de *frame*."
2022-03-23 17:40:12 +00:00
#: c-api/frame.rst:86
2022-05-22 21:15:02 +00:00
msgid "Return a :term:`strong reference`. The result cannot be ``NULL``."
2023-02-16 15:57:40 +00:00
msgstr "Renvoie un :term:`strong reference`. Le résultat ne peut être ``NULL``."
2022-05-22 21:15:02 +00:00
#: c-api/frame.rst:62
2022-03-23 17:40:12 +00:00
msgid "Get the *frame* code."
2023-02-16 15:57:40 +00:00
msgstr "Obtenir le code *frame*. "
2022-03-23 17:40:12 +00:00
#: c-api/frame.rst:104
2022-03-23 17:40:12 +00:00
msgid "Return a :term:`strong reference`."
2023-02-16 15:57:40 +00:00
msgstr "Renvoie un :term:`strong reference`."
2022-03-23 17:40:12 +00:00
#: c-api/frame.rst:66
2022-05-22 21:15:02 +00:00
msgid "The result (frame code) cannot be ``NULL``."
2023-02-16 15:57:40 +00:00
msgstr "Le résultat (code *frame*) ne peut être ``NULL``."
2022-05-22 21:15:02 +00:00
#: c-api/frame.rst:73
2022-03-23 17:40:12 +00:00
msgid ""
2022-05-22 21:15:02 +00:00
"Get the generator, coroutine, or async generator that owns this frame, or "
"``NULL`` if this frame is not owned by a generator. Does not raise an "
"exception, even if the return value is ``NULL``."
2023-02-16 15:57:40 +00:00
msgstr "Obtenir le générateur, coroutine, ou un générateur asynchrone qui maintient cette *frame*, ou "
"``NULL`` si cette *frame* n'est pas maintenu par un générateur. Il ne lève pas "
"d'exception, même si la valeur renvoyée est ``NULL``."
2022-05-22 21:15:02 +00:00
#: c-api/frame.rst:77
2022-05-22 21:15:02 +00:00
msgid "Return a :term:`strong reference`, or ``NULL``."
2023-02-16 15:57:40 +00:00
msgstr "Renvoie un :term:`strong reference`, ou ``NULL``."
2022-05-22 21:15:02 +00:00
#: c-api/frame.rst:84
2022-05-22 21:15:02 +00:00
msgid "Get the *frame*'s ``f_globals`` attribute."
2023-02-16 15:57:40 +00:00
msgstr "Obtenir l'attribut ``f_globals`` de *frame*."
2022-05-22 21:15:02 +00:00
#: c-api/frame.rst:93
2022-05-22 21:15:02 +00:00
msgid "Get the *frame*'s ``f_lasti`` attribute."
2023-02-16 15:57:40 +00:00
msgstr "Obtenir l'attribut ``f_lasti`` de *frame*."
2022-05-22 21:15:02 +00:00
#: c-api/frame.rst:95
2022-05-22 21:15:02 +00:00
msgid "Returns -1 if ``frame.f_lasti`` is ``None``."
2023-02-16 15:57:40 +00:00
msgstr "Renvoie -1 si ``frame.f_lasti`` est ``None``."
2022-05-22 21:15:02 +00:00
#: c-api/frame.rst:102
2022-05-22 21:15:02 +00:00
msgid "Get the *frame*'s ``f_locals`` attribute (:class:`dict`)."
2023-02-16 15:57:40 +00:00
msgstr "Obtenir l'attribut (:class:`dict`) ``f_locals`` de *frame*."
2022-03-23 17:40:12 +00:00
#: c-api/frame.rst:111
2022-03-23 17:40:12 +00:00
msgid "Return the line number that *frame* is currently executing."
2023-02-16 15:57:40 +00:00
msgstr "Renvoie la ligne où cette *frame* est en train d'exécuter."