PEP 651: Add a couple of missing words. (#1768)

This commit is contained in:
Mark Shannon 2021-01-19 17:53:22 +00:00 committed by GitHub
parent cc47b869b7
commit 13b8bb4c5d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -132,8 +132,8 @@ Py_CheckStackDepthWithHeadRoom()
``int Py_CheckStackDepthWithHeadroom(const char *where, int headroom)``
Behaves like ``Py_CheckStackDepth(where)`` but reduces the effective stack size
by ``headroom`` when determining the risk of C stack overflow.
This function should be used when additional C stack will
by ``headroom`` bytes when determining the risk of C stack overflow.
This function should be used when additional C stack will be
needed for cleanup.
``Py_CheckStackDepth(where)`` is equivalent to ``Py_CheckStackDepthWithHeadRoom(where, 0)``.