Worked on function.po

This commit is contained in:
Thevenel 2023-02-16 12:25:21 +01:00
parent 26ccd93ef1
commit cca595f077
1 changed files with 11 additions and 5 deletions

View File

@ -20,32 +20,38 @@ msgstr "Objets fonctions"
#: c-api/function.rst:10
msgid "There are a few functions specific to Python functions."
msgstr ""
msgstr "Il y'a quelques fonctions qui sont spécifiques parmi les fonctions de Python"
#: c-api/function.rst:15
msgid "The C structure used for functions."
msgstr ""
msgstr "La structure de C est utilisée comme fonctions."
#: c-api/function.rst:22
msgid ""
"This is an instance of :c:type:`PyTypeObject` and represents the Python "
"function type. It is exposed to Python programmers as ``types."
"FunctionType``."
msgstr ""
msgstr "C'est une instance de :c:type:`PyTypeObject` et représente le type fonction"
"en Python. Il est exposé aux développeurs comme ``types."
"FunctionType``."
#: c-api/function.rst:28
msgid ""
"Return true if *o* is a function object (has type :c:data:"
"`PyFunction_Type`). The parameter must not be ``NULL``. This function "
"always succeeds."
msgstr ""
msgstr "Renvoie vrai si *o* est un objet de type fonction (a comme type :c:data:"
"`PyFunction_Type`). Le paramètre ne doit pas être ``NULL``. Cette fonction"
"réussit toujours."
#: c-api/function.rst:34
msgid ""
"Return a new function object associated with the code object *code*. "
"*globals* must be a dictionary with the global variables accessible to the "
"function."
msgstr ""
msgstr "Renvoie une nouvelle fonction associée avec l'objet code *code*. "
"*globals* doit ête un dictionnaire avec les variables globales accessible à la "
"fonction."
#: c-api/function.rst:37
msgid ""