@@ -291,12 +291,12 @@ msgid ""
291
291
"`PyBuffer_Release` after you have finished processing the data (or in any "
292
292
"early abort case)."
293
293
msgstr ""
294
- "Néanmoins, quand une structure :ctype :`Py_buffer` est en cours de "
294
+ "Néanmoins, quand une structure :c:type :`Py_buffer` est en cours de "
295
295
"remplissage, le buffer sous-jacent est verrouillé pour permettre à "
296
296
"l'appelant d'utiliser le buffer par la suite, même à l'intérieur d'un bloc :"
297
- "ctype :`Py_BEGIN_ALLOW_THREADS`. Ceci sans le risque pour les données "
297
+ "c:type :`Py_BEGIN_ALLOW_THREADS`. Ceci sans le risque pour les données "
298
298
"mutables de voir leur taille changée ou d'être supprimées. En conséquence, "
299
- "**il vous appartient d'appeler** :cfunc :`PyBuffer_Release` après que vous "
299
+ "**il vous appartient d'appeler** :c:func :`PyBuffer_Release` après que vous "
300
300
"ayez terminé de traiter les données (ou après une interruption prémataturée "
301
301
"du traitement de ces données)."
302
302
@@ -315,13 +315,13 @@ msgid ""
315
315
"define :c:macro:`PY_SSIZE_T_CLEAN`."
316
316
msgstr ""
317
317
"Pour toutes les variantes de formats ``#`` (``s#``, ``y#``, etc), le type de "
318
- "l'argument *length* (int ou :ctype: `Py_ssize_t`) est contrôlé en définissant "
319
- "la macro :cmacro: `PY_SSIZE_T_CLEAN` avant d'inclure le fichier :file:`Python. "
320
- "h`. Si la macro est définie, la longueur est de type :ctype:`Py_ssize_t` au "
321
- "lieu d'être de type :ctype: `int`. Ce comportement changera dans une future "
322
- "version de Python, qui supportera seulement :ctype:`Py_ssize_t` a la place "
323
- "de :ctype: `int`. Il est préférable de toujours définir :cmacro: "
324
- "`PY_SSIZE_T_CLEAN`."
318
+ "l'argument *length* (int ou :c:type: `Py_ssize_t`) est contrôlé en "
319
+ "définissant la macro :c:macro: `PY_SSIZE_T_CLEAN` avant d'inclure le fichier :"
320
+ "file:`Python. h`. Si la macro est définie, la longueur est de type :c:type: "
321
+ "`Py_ssize_t` au lieu d'être de type :c:type: `int`. Ce comportement changera "
322
+ "dans une future version de Python, qui supportera seulement :c:type: "
323
+ "`Py_ssize_t` a la place de :c:type: `int`. Il est préférable de toujours "
324
+ "définir :c:macro: `PY_SSIZE_T_CLEAN`."
325
325
326
326
#: ../Doc/c-api/arg.rst:72
327
327
msgid "``s`` (:class:`str`) [const char \\*]"
@@ -515,7 +515,7 @@ msgid ""
515
515
"type:`Py_UNICODE` pointer is set to *NULL*."
516
516
msgstr ""
517
517
"Comme ``u``, mais l'objet Python peut aussi être ``None``, auquel cas le "
518
- "pointeur :ctype :`Py_UNICODE` vaut *NULL*."
518
+ "pointeur :c:type :`Py_UNICODE` vaut *NULL*."
519
519
520
520
#: ../Doc/c-api/arg.rst:148
521
521
msgid "``Z#`` (:class:`str` or ``None``) [Py_UNICODE \\*, int]"
@@ -527,7 +527,7 @@ msgid ""
527
527
"c:type:`Py_UNICODE` pointer is set to *NULL*."
528
528
msgstr ""
529
529
"Comme ``u#``, mais l'objet Python peut également être ``None``, auquel cas "
530
- "le pointeur :ctype :`Py_UNICODE` vaut *NULL*."
530
+ "le pointeur :c:type :`Py_UNICODE` vaut *NULL*."
531
531
532
532
#: ../Doc/c-api/arg.rst:153
533
533
msgid "``U`` (:class:`str`) [PyObject \\*]"
@@ -679,7 +679,7 @@ msgid ""
679
679
"c:type:`unsigned char`."
680
680
msgstr ""
681
681
"Convertit un entier Python positif ou nul en un unsigned tiny int, stocké "
682
- "dans un :ctype: `unsigned char`C."
682
+ "dans un :c:type: `unsigned char` C."
683
683
684
684
#: ../Doc/c-api/arg.rst:229 ../Doc/c-api/arg.rst:563
685
685
msgid "``B`` (:class:`int`) [unsigned char]"
@@ -691,15 +691,15 @@ msgid ""
691
691
"a C :c:type:`unsigned char`."
692
692
msgstr ""
693
693
"Convertit un entier Python en un tiny int sans vérifier le débordement, "
694
- "stocké dans un :ctype :`unsigned char` C."
694
+ "stocké dans un :c:type :`unsigned char` C."
695
695
696
696
#: ../Doc/c-api/arg.rst:232 ../Doc/c-api/arg.rst:557
697
697
msgid "``h`` (:class:`int`) [short int]"
698
698
msgstr "``h`` (:class:`int`) [short int]"
699
699
700
700
#: ../Doc/c-api/arg.rst:232
701
701
msgid "Convert a Python integer to a C :c:type:`short int`."
702
- msgstr "Convertit un entier Python en un :ctype :`short int` C."
702
+ msgstr "Convertit un entier Python en un :c:type :`short int` C."
703
703
704
704
#: ../Doc/c-api/arg.rst:236 ../Doc/c-api/arg.rst:566
705
705
msgid "``H`` (:class:`int`) [unsigned short int]"
@@ -710,7 +710,7 @@ msgid ""
710
710
"Convert a Python integer to a C :c:type:`unsigned short int`, without "
711
711
"overflow checking."
712
712
msgstr ""
713
- "Convertit un entier Python en un :ctype :`unsigned short int` C, sans "
713
+ "Convertit un entier Python en un :c:type :`unsigned short int` C, sans "
714
714
"contrôle de débordement."
715
715
716
716
#: ../Doc/c-api/arg.rst:239 ../Doc/c-api/arg.rst:551
@@ -719,7 +719,7 @@ msgstr "``i`` (:class:`int`) [int]"
719
719
720
720
#: ../Doc/c-api/arg.rst:239
721
721
msgid "Convert a Python integer to a plain C :c:type:`int`."
722
- msgstr "Convertit un entier Python en un :ctype :`int` C."
722
+ msgstr "Convertit un entier Python en un :c:type :`int` C."
723
723
724
724
#: ../Doc/c-api/arg.rst:243 ../Doc/c-api/arg.rst:569
725
725
msgid "``I`` (:class:`int`) [unsigned int]"
@@ -730,7 +730,7 @@ msgid ""
730
730
"Convert a Python integer to a C :c:type:`unsigned int`, without overflow "
731
731
"checking."
732
732
msgstr ""
733
- "Convertit un entier Python en un :ctype :`unsigned int` C, sans contrôle de "
733
+ "Convertit un entier Python en un :c:type :`unsigned int` C, sans contrôle de "
734
734
"le débordement."
735
735
736
736
#: ../Doc/c-api/arg.rst:246 ../Doc/c-api/arg.rst:560
@@ -739,7 +739,7 @@ msgstr "``l`` (:class:`int`) [long int]"
739
739
740
740
#: ../Doc/c-api/arg.rst:246
741
741
msgid "Convert a Python integer to a C :c:type:`long int`."
742
- msgstr "Convertit un entier Python en un :ctype :`long int`."
742
+ msgstr "Convertit un entier Python en un :c:type :`long int`."
743
743
744
744
#: ../Doc/c-api/arg.rst:250 ../Doc/c-api/arg.rst:572
745
745
msgid "``k`` (:class:`int`) [unsigned long]"
@@ -750,7 +750,7 @@ msgid ""
750
750
"Convert a Python integer to a C :c:type:`unsigned long` without overflow "
751
751
"checking."
752
752
msgstr ""
753
- "Convertit un entier Python en un :ctype :`unsigned long` C sans en vérifier "
753
+ "Convertit un entier Python en un :c:type :`unsigned long` C sans en vérifier "
754
754
"le débordement."
755
755
756
756
#: ../Doc/c-api/arg.rst:255 ../Doc/c-api/arg.rst:577
@@ -763,9 +763,9 @@ msgid ""
763
763
"available on platforms that support :c:type:`long long` (or :c:type:`_int64` "
764
764
"on Windows)."
765
765
msgstr ""
766
- "Convertit un entier Python en un :ctype :`long long` C. Ce format est "
767
- "uniquement disponible sur les plates-formes qui prennent en charge :ctype :"
768
- "`long long` (ou :ctype :`_int64` sous Windows)."
766
+ "Convertit un entier Python en un :c:type :`long long` C. Ce format est "
767
+ "uniquement disponible sur les plates-formes qui prennent en charge :c:type :"
768
+ "`long long` (ou :c:type :`_int64` sous Windows)."
769
769
770
770
#: ../Doc/c-api/arg.rst:260 ../Doc/c-api/arg.rst:582
771
771
msgid "``K`` (:class:`int`) [unsigned PY_LONG_LONG]"
@@ -777,9 +777,9 @@ msgid ""
777
777
"overflow checking. This format is only available on platforms that support :"
778
778
"c:type:`unsigned long long` (or :c:type:`unsigned _int64` on Windows)."
779
779
msgstr ""
780
- "Convertit un entier Python en un :ctype :`unsigned long long` C sans en "
780
+ "Convertit un entier Python en un :c:type :`unsigned long long` C sans en "
781
781
"vérifier le débordement. Ce format est uniquement disponible sur les plates-"
782
- "formes qui prennent en charge :ctype: `unsigned long long` (ou :ctype :"
782
+ "formes qui prennent en charge :c:type: `unsigned long long` (ou :c:type :"
783
783
"`unsigned _int64` sous Windows)."
784
784
785
785
#: ../Doc/c-api/arg.rst:263 ../Doc/c-api/arg.rst:585
@@ -788,7 +788,7 @@ msgstr "``n`` (:class:`int`) [Py_ssize_t]"
788
788
789
789
#: ../Doc/c-api/arg.rst:263
790
790
msgid "Convert a Python integer to a C :c:type:`Py_ssize_t`."
791
- msgstr "Convertit un entier Python en un :ctype :`short int` C."
791
+ msgstr "Convertit un entier Python en un :c:type :`short int` C."
792
792
793
793
#: ../Doc/c-api/arg.rst:270
794
794
msgid "``c`` (:class:`bytes` or :class:`bytearray` of length 1) [char]"
@@ -799,8 +799,8 @@ msgid ""
799
799
"Convert a Python byte, represented as a :class:`bytes` or :class:`bytearray` "
800
800
"object of length 1, to a C :c:type:`char`."
801
801
msgstr ""
802
- "Convertit un octet Python, représenté comme un objet :class:`bytes` de "
803
- "longueur 1, en un :ctype :`char` C."
802
+ "Convertit un octet Python, représenté comme un objet :class:`bytes` ou : "
803
+ "class:`bytearray` de longueur 1, en un :c:type :`char` C."
804
804
805
805
#: ../Doc/c-api/arg.rst:269
806
806
msgid "Allow :class:`bytearray` objects."
@@ -816,23 +816,23 @@ msgid ""
816
816
"1, to a C :c:type:`int`."
817
817
msgstr ""
818
818
"Convertit un caractère Python, représenté comme un objet :class:`str` de "
819
- "longueur 1, en un :ctype :`int` C."
819
+ "longueur 1, en un :c:type :`int` C."
820
820
821
821
#: ../Doc/c-api/arg.rst:277 ../Doc/c-api/arg.rst:599
822
822
msgid "``f`` (:class:`float`) [float]"
823
823
msgstr "``f`` (:class:`float`) [float]"
824
824
825
825
#: ../Doc/c-api/arg.rst:277
826
826
msgid "Convert a Python floating point number to a C :c:type:`float`."
827
- msgstr "Convertit un nombre flottant Python vers un :ctype :`float`."
827
+ msgstr "Convertit un nombre flottant Python vers un :c:type :`float`."
828
828
829
829
#: ../Doc/c-api/arg.rst:280 ../Doc/c-api/arg.rst:596
830
830
msgid "``d`` (:class:`float`) [double]"
831
831
msgstr "``d`` (:class:`float`) [double]"
832
832
833
833
#: ../Doc/c-api/arg.rst:280
834
834
msgid "Convert a Python floating point number to a C :c:type:`double`."
835
- msgstr "Convertit un nombre flottant Python vers un :ctype :`double` C."
835
+ msgstr "Convertit un nombre flottant Python vers un :c:type :`double` C."
836
836
837
837
#: ../Doc/c-api/arg.rst:283
838
838
msgid "``D`` (:class:`complex`) [Py_complex]"
@@ -841,7 +841,8 @@ msgstr "``D`` (:class:`complex`) [Py_complex]"
841
841
#: ../Doc/c-api/arg.rst:283
842
842
msgid "Convert a Python complex number to a C :c:type:`Py_complex` structure."
843
843
msgstr ""
844
- "Convertit un nombre complexe Python vers une structure :ctype:`Py_complex` C."
844
+ "Convertit un nombre complexe Python vers une structure :c:type:`Py_complex` "
845
+ "C."
845
846
846
847
#: ../Doc/c-api/arg.rst:286
847
848
msgid "Other objects"
@@ -1264,7 +1265,7 @@ msgstr ""
1264
1265
1265
1266
#: ../Doc/c-api/arg.rst:560
1266
1267
msgid "Convert a C :c:type:`long int` to a Python integer object."
1267
- msgstr "Convertit un :ctype :`long int` en un int Python."
1268
+ msgstr "Convertit un :c:type :`long int` en un int Python."
1268
1269
1269
1270
#: ../Doc/c-api/arg.rst:563
1270
1271
msgid "Convert a C :c:type:`unsigned char` to a Python integer object."
0 commit comments