From 82ec638ab706577c043056a57e2a2322b43ef94a Mon Sep 17 00:00:00 2001 From: Petr Viktorin Date: Fri, 22 Apr 2022 12:44:43 +0200 Subject: Docs: Clarify availability of PyOS_CheckStack (GH-91816) --- Doc/c-api/sys.rst | 6 +++--- Include/pythonrun.h | 1 + 2 files changed, 4 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) diff --git a/Include/pythonrun.h b/Include/pythonrun.h index 0271577..1b208b7 100644 --- a/Include/pythonrun.h +++ b/Include/pythonrun.h @@ -24,6 +24,7 @@ PyAPI_DATA(int) (*PyOS_InputHook)(void); #if defined(WIN32) && !defined(MS_WIN64) && !defined(_M_ARM) && defined(_MSC_VER) && _MSC_VER >= 1300 /* Enable stack checking under Microsoft C */ +// When changing the platforms, ensure PyOS_CheckStack() docs are still correct #define USE_STACKCHECK #endif -- cgit v0.12