mirror of
https://github.com/python/cpython.git
synced 2025-07-29 14:15:07 +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>
This commit is contained in:
parent
059b5baf98
commit
664aa94b57
10 changed files with 31 additions and 24 deletions
|
@ -436,11 +436,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