@@ -9,7 +9,7 @@ msgstr ""
9
9
"Project-Id-Version : Python 3.6\n "
10
10
"Report-Msgid-Bugs-To : \n "
11
11
"POT-Creation-Date : 2017-04-02 22:11+0200\n "
12
- "PO-Revision-Date : YEAR-MO-DA HO:MI+ZONE \n "
12
+ "PO-Revision-Date : 2017-11-27 11:44+0100 \n "
13
13
"Last-Translator : FULL NAME <EMAIL@ADDRESS>\n "
14
14
"Language-Team : LANGUAGE <LL@li.org>\n "
15
15
"Language : fr\n "
@@ -27,7 +27,7 @@ msgid ""
27
27
"represents a chunk of executable code that hasn't yet been bound into a "
28
28
"function."
29
29
msgstr ""
30
- "Les objets Code sont un détail bas- niveau de l'implémentation CPython. "
30
+ "Les objets * Code* sont spécifiques à l'implémentation bas niveau de CPython. "
31
31
"Chacun d'eux représente une partie de code exécutable, qui n'a pas encore "
32
32
"été lié dans une fonction."
33
33
@@ -36,20 +36,24 @@ msgid ""
36
36
"The C structure of the objects used to describe code objects. The fields of "
37
37
"this type are subject to change at any time."
38
38
msgstr ""
39
+ "La structure C utilisée pour décrire les objets *Code*. Les attributs de "
40
+ "cette structure sont sujets à changer à tout moment."
39
41
40
42
#: ../Doc/c-api/code.rst:24
41
43
msgid ""
42
44
"This is an instance of :c:type:`PyTypeObject` representing the Python :class:"
43
45
"`code` type."
44
46
msgstr ""
47
+ "C'est une instance de :c:type:`PyTypeObject` représentant le type Python :"
48
+ "class:`code`."
45
49
46
50
#: ../Doc/c-api/code.rst:30
47
51
msgid "Return true if *co* is a :class:`code` object."
48
- msgstr ""
52
+ msgstr "Renvoie vrai si *co* est un objet :class:`code`. "
49
53
50
54
#: ../Doc/c-api/code.rst:34
51
55
msgid "Return the number of free variables in *co*."
52
- msgstr ""
56
+ msgstr "Renvoie le nombre de variables libres dans *co*. "
53
57
54
58
#: ../Doc/c-api/code.rst:38
55
59
msgid ""
@@ -58,10 +62,17 @@ msgid ""
58
62
"directly can bind you to a precise Python version since the definition of "
59
63
"the bytecode changes often."
60
64
msgstr ""
65
+ "Renvoie un nouvel objet *code*. Si vous avez besoin d'un objet code factice "
66
+ "pour créer une *frame*, utilisez plutôt :c:func:`PyCode_NewEmpty`. Appeler :"
67
+ "c:func:`PyCode_New` peut vous lier directement à une version spécifique de "
68
+ "Python, le *bytecode* étant sujet à modifications."
61
69
62
70
#: ../Doc/c-api/code.rst:46
63
71
msgid ""
64
72
"Return a new empty code object with the specified filename, function name, "
65
73
"and first line number. It is illegal to :func:`exec` or :func:`eval` the "
66
74
"resulting code object."
67
75
msgstr ""
76
+ "Renvoie un nouvel objet *code* avec le nom de fichier, le nom de fonction, "
77
+ "et le numéro de première ligne donnés. Il n'est pas permis d'utiliser :func:"
78
+ "`exec` ou :func:`eval` sur l'objet renvoyé."
0 commit comments