mirror of
https://github.com/python/cpython.git
synced 2025-07-24 03:35:53 +00:00
Document Py_ssize_t. (GH-92512)
It fixes 252 errors from a Sphinx nitpicky run (sphinx-build -n). But
there's 8182 errors left.
Co-authored-by: Ezio Melotti <ezio.melotti@gmail.com>
(cherry picked from commit 664aa94b57
)
Co-authored-by: Julien Palard <julien@palard.fr>
This commit is contained in:
parent
2e8b2d0ee2
commit
0c1795bd33
10 changed files with 31 additions and 24 deletions
|
@ -497,11 +497,11 @@ APIs:
|
|||
| :attr:`%llu` | unsigned long long | Equivalent to |
|
||||
| | | ``printf("%llu")``. [1]_ |
|
||||
+-------------------+---------------------+----------------------------------+
|
||||
| :attr:`%zd` | Py_ssize_t | Equivalent to |
|
||||
| | | ``printf("%zd")``. [1]_ |
|
||||
| :attr:`%zd` | :c:type:`\ | Equivalent to |
|
||||
| | Py_ssize_t` | ``printf("%zd")``. [1]_ |
|
||||
+-------------------+---------------------+----------------------------------+
|
||||
| :attr:`%zi` | Py_ssize_t | Equivalent to |
|
||||
| | | ``printf("%zi")``. [1]_ |
|
||||
| :attr:`%zi` | :c:type:`\ | Equivalent to |
|
||||
| | Py_ssize_t` | ``printf("%zi")``. [1]_ |
|
||||
+-------------------+---------------------+----------------------------------+
|
||||
| :attr:`%zu` | size_t | Equivalent to |
|
||||
| | | ``printf("%zu")``. [1]_ |
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue