Skip to content

Commit ea3c013

Browse files
committed
fix line length. limit to 80 characters
1 parent 6354f1a commit ea3c013

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

Doc/extending/extending.rst

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -77,10 +77,13 @@ the module and a copyright notice if you like).
7777
All user-visible symbols defined by :file:`Python.h` have a prefix of ``Py`` or
7878
``PY``, except those defined in standard header files.
7979

80-
Note that :file:`Python.h` excludes ``<stdio.h>``, ``<string.h>``, ``<errno.h>``, and ``<stdlib.h>`` as they are not used by
81-
Python anymore. For backward compatibility of existing third party C extensions, they will
82-
be included if Py_LIMITED_API is not defined and for limited C API version 3.10 and older.
83-
The ``<ctype.h>`` and ``<unistd.h>`` headers are also not included for limited C API version 3.13 and newer.
80+
Note that :file:`Python.h` excludes ``<stdio.h>``, ``<string.h>``,
81+
``<errno.h>``, and ``<stdlib.h>`` as they are not used by Python anymore.
82+
For backward compatibility of existing third party C extensions, they will be
83+
included if Py_LIMITED_API is not defined and for limited C API version 3.10
84+
and older.
85+
The ``<ctype.h>`` and ``<unistd.h>`` headers are also not included for limited
86+
C API version 3.13 and newer.
8487

8588

8689
The next thing we add to our module file is the C function that will be called

0 commit comments

Comments
 (0)