diff options
author | Petr Viktorin <encukou@gmail.com> | 2022-04-22 10:44:43 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-22 10:44:43 (GMT) |
commit | 82ec638ab706577c043056a57e2a2322b43ef94a (patch) | |
tree | 5965e5df5711633e727b1756aa65a77f3c730f11 /Doc/c-api | |
parent | bcf14ae4336fced718c00edc34b9191c2b48525a (diff) | |
download | cpython-82ec638ab706577c043056a57e2a2322b43ef94a.zip cpython-82ec638ab706577c043056a57e2a2322b43ef94a.tar.gz cpython-82ec638ab706577c043056a57e2a2322b43ef94a.tar.bz2 |
Docs: Clarify availability of PyOS_CheckStack (GH-91816)
Diffstat (limited to 'Doc/c-api')
-rw-r--r-- | Doc/c-api/sys.rst | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/c-api/sys.rst b/Doc/c-api/sys.rst index de94e3f..66216ee 100644 --- a/Doc/c-api/sys.rst +++ b/Doc/c-api/sys.rst @@ -96,9 +96,9 @@ Operating System Utilities Return true when the interpreter runs out of stack space. This is a reliable check, but is only available when :const:`USE_STACKCHECK` is defined (currently - on Windows using the Microsoft Visual C++ compiler). :const:`USE_STACKCHECK` - will be defined automatically; you should never change the definition in your - own code. + on certain versions of Windows using the Microsoft Visual C++ compiler). + :const:`USE_STACKCHECK` will be defined automatically; you should never + change the definition in your own code. .. c:function:: PyOS_sighandler_t PyOS_getsig(int i) |