Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion c-api/buffer.po
Original file line number Diff line number Diff line change
Expand Up @@ -528,7 +528,7 @@ msgstr ""

#: ../Doc/c-api/buffer.rst:321
msgid "format"
msgstr ""
msgstr "format"

#: ../Doc/c-api/buffer.rst:323 ../Doc/c-api/buffer.rst:325
#: ../Doc/c-api/buffer.rst:327 ../Doc/c-api/buffer.rst:329
Expand Down
4 changes: 4 additions & 0 deletions dict
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ coroutine
coroutines
Cython
d'allocateurs
décodables
déduplication
délimitants
désenregistre
Expand Down Expand Up @@ -98,6 +99,7 @@ Pydb
Pylint
PythonWin
recompilation
Reedy
réentrants
réessayable
réexécuter
Expand Down Expand Up @@ -126,10 +128,12 @@ Serwy
shell
slot
surprenamment
tk
tokenisation
tokenisé
tokenisés
tty
von
W3C
wxWidgets
X11
Expand Down
2 changes: 1 addition & 1 deletion distutils/packageindex.po
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@ msgstr ""
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-05-23 16:48+0200\n"
"PO-Revision-Date: 2019-08-21 12:33+0200\n"
"Last-Translator: Zepmanbc <zepman@gmail.com>\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"
"Last-Translator: Zepmanbc <zepman@gmail.com>\n"
"X-Generator: Poedit 2.2.3\n"

#: ../Doc/distutils/packageindex.rst:7
Expand Down
2 changes: 1 addition & 1 deletion distutils/setupscript.po
Original file line number Diff line number Diff line change
Expand Up @@ -378,7 +378,7 @@ msgstr ""

#: ../Doc/distutils/setupscript.rst:335
msgid "Other options"
msgstr ""
msgstr "Autres options"

#: ../Doc/distutils/setupscript.rst:337
msgid ""
Expand Down
24 changes: 23 additions & 1 deletion extending/extending.po
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,9 @@ msgid ""
"It is recommended to always define ``PY_SSIZE_T_CLEAN`` before including "
"``Python.h``. See :ref:`parsetuple` for a description of this macro."
msgstr ""
"Il est recommandé de toujours définir ``PY_SSIZE_T_CLEAN`` avant d'inclure "
"``Python.h``. Lisez :ref:`parsetuple` pour avoir une description de cette "
"macro."

#: ../Doc/extending/extending.rst:75
msgid ""
Expand Down Expand Up @@ -567,13 +570,16 @@ msgstr ""

#: ../Doc/extending/extending.rst:312
msgid "The Module's Method Table and Initialization Function"
msgstr ""
msgstr "La fonction d'initialisation et le tableau des méthodes du module"

#: ../Doc/extending/extending.rst:314
msgid ""
"I promised to show how :c:func:`spam_system` is called from Python programs. "
"First, we need to list its name and address in a \"method table\"::"
msgstr ""
"Nous avons promis de montrer comment :c:func:`spam_system` est appelée "
"depuis les programmes Python. D'abord, nous avons besoin d'avoir son nom et "
"son adresse dans un « tableau des méthodes » ::"

#: ../Doc/extending/extending.rst:325
msgid ""
Expand All @@ -583,13 +589,22 @@ msgid ""
"value of ``0`` means that an obsolete variant of :c:func:`PyArg_ParseTuple` "
"is used."
msgstr ""
"Notez la troisième entrée (``METH_VARARGS``). C'est un indicateur du type de "
"convention à utiliser pour la fonction C, à destination de l'interpréteur. "
"Il doit valoir normalement ``METH_VARARGS`` ou ``METH_VARARGS | "
"METH_KEYWORDS`` ; la valeur ``0`` indique qu'une variante obsolète de :c:"
"func:`PyArg_ParseTuple` est utilisée."

#: ../Doc/extending/extending.rst:330
msgid ""
"When using only ``METH_VARARGS``, the function should expect the Python-"
"level parameters to be passed in as a tuple acceptable for parsing via :c:"
"func:`PyArg_ParseTuple`; more information on this function is provided below."
msgstr ""
"Si seulement ``METH_VARARGS`` est utilisé, la fonction s'attend à ce que les "
"paramètres Python soient passés comme un n-uplet que l'on peut analyser "
"*via* :c:func:`PyArg_ParseTuple` ; des informations supplémentaires sont "
"fournies plus bas."

#: ../Doc/extending/extending.rst:334
msgid ""
Expand All @@ -599,11 +614,18 @@ msgid ""
"keywords. Use :c:func:`PyArg_ParseTupleAndKeywords` to parse the arguments "
"to such a function."
msgstr ""
"Le bit :const:`METH_KEYWORDS` peut être mis à un dans le troisième champ si "
"des arguments par mot-clés doivent être passés à la fonction. Dans ce cas, "
"la fonction C doit accepter un troisième paramètre ``PyObject *`` qui est un "
"dictionnaire des mots-clés. Utilisez :c:func:`PyArg_ParseTupleAndKeywords` "
"pour analyser les arguments d'une telle fonction."

#: ../Doc/extending/extending.rst:340
msgid ""
"The method table must be referenced in the module definition structure::"
msgstr ""
"Le tableau des méthodes doit être référencé dans la structure de définition "
"du module ::"

#: ../Doc/extending/extending.rst:351
msgid ""
Expand Down
Loading