@@ -64,39 +64,39 @@ called with a non-bytes parameter.
64
64
+-------------------+---------------+--------------------------------+
65
65
| Format Characters | Type | Comment |
66
66
+===================+===============+================================+
67
- | :attr: ` %% ` | *n/a * | The literal % character. |
67
+ | `` %% `` | *n/a * | The literal % character. |
68
68
+-------------------+---------------+--------------------------------+
69
- | :attr: ` %c ` | int | A single byte, |
69
+ | `` %c `` | int | A single byte, |
70
70
| | | represented as a C int. |
71
71
+-------------------+---------------+--------------------------------+
72
- | :attr: ` %d ` | int | Equivalent to |
72
+ | `` %d `` | int | Equivalent to |
73
73
| | | ``printf("%d") ``. [1 ]_ |
74
74
+-------------------+---------------+--------------------------------+
75
- | :attr: ` %u ` | unsigned int | Equivalent to |
75
+ | `` %u `` | unsigned int | Equivalent to |
76
76
| | | ``printf("%u") ``. [1 ]_ |
77
77
+-------------------+---------------+--------------------------------+
78
- | :attr: ` %ld ` | long | Equivalent to |
78
+ | `` %ld `` | long | Equivalent to |
79
79
| | | ``printf("%ld") ``. [1 ]_ |
80
80
+-------------------+---------------+--------------------------------+
81
- | :attr: ` %lu ` | unsigned long | Equivalent to |
81
+ | `` %lu `` | unsigned long | Equivalent to |
82
82
| | | ``printf("%lu") ``. [1 ]_ |
83
83
+-------------------+---------------+--------------------------------+
84
- | :attr: ` %zd ` | :c:type: `\ | Equivalent to |
84
+ | `` %zd `` | :c:type: `\ | Equivalent to |
85
85
| | Py_ssize_t` | ``printf("%zd") ``. [1 ]_ |
86
86
+-------------------+---------------+--------------------------------+
87
- | :attr: ` %zu ` | size_t | Equivalent to |
87
+ | `` %zu `` | size_t | Equivalent to |
88
88
| | | ``printf("%zu") ``. [1 ]_ |
89
89
+-------------------+---------------+--------------------------------+
90
- | :attr: ` %i ` | int | Equivalent to |
90
+ | `` %i `` | int | Equivalent to |
91
91
| | | ``printf("%i") ``. [1 ]_ |
92
92
+-------------------+---------------+--------------------------------+
93
- | :attr: ` %x ` | int | Equivalent to |
93
+ | `` %x `` | int | Equivalent to |
94
94
| | | ``printf("%x") ``. [1 ]_ |
95
95
+-------------------+---------------+--------------------------------+
96
- | :attr: ` %s ` | const char\* | A null-terminated C character |
96
+ | `` %s `` | const char\* | A null-terminated C character |
97
97
| | | array. |
98
98
+-------------------+---------------+--------------------------------+
99
- | :attr: ` %p ` | const void\* | The hex representation of a C |
99
+ | `` %p `` | const void\* | The hex representation of a C |
100
100
| | | pointer. Mostly equivalent to |
101
101
| | | ``printf("%p") `` except that |
102
102
| | | it is guaranteed to start with |
0 commit comments