summaryrefslogtreecommitdiffstats
path: root/Include
diff options
context:
space:
mode:
authorPetr Viktorin <encukou@gmail.com>2022-04-22 10:44:43 (GMT)
committerGitHub <noreply@github.com>2022-04-22 10:44:43 (GMT)
commit82ec638ab706577c043056a57e2a2322b43ef94a (patch)
tree5965e5df5711633e727b1756aa65a77f3c730f11 /Include
parentbcf14ae4336fced718c00edc34b9191c2b48525a (diff)
downloadcpython-82ec638ab706577c043056a57e2a2322b43ef94a.zip
cpython-82ec638ab706577c043056a57e2a2322b43ef94a.tar.gz
cpython-82ec638ab706577c043056a57e2a2322b43ef94a.tar.bz2
Docs: Clarify availability of PyOS_CheckStack (GH-91816)
Diffstat (limited to 'Include')
-rw-r--r--Include/pythonrun.h1
1 files changed, 1 insertions, 0 deletions
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